This topic has 23 replies, 2 voices, and was last updated 7 years by Laura.

  • Author
  • #113438
     missmiss
    Participant

    If you select the sticky menú + header with the logo and main menu in the center the sticky menu is too big, see attached.

    #113439
     missmiss
    Participant
    This reply has been set as private.
    #113608
     Laura
    Moderator

    Hello, i can make the sticky logo be like normal menu, if you can share a link to your site 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #113625
     missmiss
    Participant
    This reply has been set as private.
    #114041
     Laura
    Moderator

    Hello, i think it will be all css, so will be placed at style.css file, at child theme

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #114158
     missmiss
    Participant
    This reply has been set as private.
    #114202
     missmiss
    Participant
    This reply has been set as private.
    #114696
     Laura
    Moderator

    Hello, will be here, let me know the new user when you can 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #116904
     missmiss
    Participant
    This reply has been set as private.
    #117351
     Laura
    Moderator

    Hello, i do not see the sticky menu, do you still need to change it?
    Btw, i can speak spanish too if you prefer

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #117375
     missmiss
    Participant
    This reply has been set as private.
    #117978
     Laura
    Moderator

    Hola, entiendo, añade esto a style.css i se arreglará 🙂

    COPY CODE
    
    .is-sticky .header-centered .navbar-header {
        float: left !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #117979
     missmiss
    Participant
    This reply has been set as private.
    #117981
     missmiss
    Participant
    This reply has been set as private.
    #118375
     Laura
    Moderator

    Hola, entiendo, puedes usar el widget de woocommerce para buscar si te falla la lupa.
    El precio sin iva o con iva depende de como lo configures en woocommerce, sé que hay una opción que muestra los precios sin o con iva depende de si están en la tienda o en el carrito.
    Respecto al popup, prueba usando este css

    COPY CODE
    
    #productModal {
        max-width: 950px !important;
        width: 100% !important;
    }
    

    El problema es el tamaño de la imagen

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #118395
     missmiss
    Participant
    This reply has been set as private.
    #118901
     Laura
    Moderator

    Hola, ya veo, tienes todos los plugins actualizados a la ultima versión?
    Prueba lo siguiente:

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #135677
     missmiss
    Participant
    This reply has been set as private.
    #135898
     Laura
    Moderator

    Hola, lo has añadido al child theme y al quick css y en ningun lado funciona?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #135899
     missmiss
    Participant
    This reply has been set as private.
    #135900
     missmiss
    Participant
    This reply has been set as private.
    #136298
     Laura
    Moderator

    Arreglado con el siguiente código

    COPY CODE
    
    .is-sticky .header-centered .navbar-header {
    float: left !important;
    position: absolute !important;
    }
    .is-sticky .header-centered .navbar-header .logo {
        float: left !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #136353
     missmiss
    Participant
    This reply has been set as private.
    #136483
     Laura
    Moderator

    Un placer ayudar 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 24 posts - 1 through 24 (of 24 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?