Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #386431

    Hey guys…
    how can I get the main tabs on the mobile phone to be white…and the sub-menu tabs to be not visible on the mobile phone only?
    I am using the layout style that places the menu to the left….and the theme options are not available for menu styles where the layout has the main menu stacked left.

    Thanks

    #386847

    Hi Justin!

    Thank you for using Enfold.

    Use this on Quick CSS to change the background of the mobile menu:

    #mobile-advanced, #mobile-advanced a, #mobile-advanced .mega_menu_title {
    background: #ffffff;
    }

    You can choose not to display the submenu on Enfold > Header > Mobile Menu panel.

    Regards,
    Ismael

    #386977
    This reply has been marked as private.
    #388020

    Hi!

    Yes, you can use this option – http://screencast.com/t/uc2SpvbHL, however this will disable the linking of the parent menus as now they will be used as triggers for the submenus.

    Regards,
    Josue

    #388773
    This reply has been marked as private.
    #388852

    Hi!

    In your child theme style.css change this line:

     .sub-menu a span.avia-menu-text {font-size:14px!important;font-weight:700!important;color:#FFFFFF!important;}
    

    To:

    @media only screen and (min-width: 767px) {
        .sub-menu a span.avia-menu-text {font-size:14px!important;font-weight:700!important;color:#FFFFFF!important;}
    }
    

    Cheers!
    Josue

    #389745
    This reply has been marked as private.
    #389766

    Hmm, i didn’t note that, here’s a workaround, edit header.php and change line:

    <html <?php language_attributes(); ?> class="<?php echo " html_{$style} ".$responsive." ".$av_lightbox." ".avia_header_class_string();?> ">
    

    To:

    <html <?php language_attributes(); ?> class="html_header_mobile_behavior <?php echo " html_{$style} ".$responsive." ".$av_lightbox." ".avia_header_class_string();?> ">
    

    That will manually enable that mobile menu setting. I’ll report this to Kriesi as i’m not sure if this is intended or not.

    Best regards,
    Josue

    #389809

    Thanks Josue!! I was really beginning to wonder.
    The temporary solution works. Of Course, each time the theme updates it would mean re-implementing.
    But works for now!
    Justin

    #389811

    Yeah hopefully in the future the mobile menu settings will be accessible regardless of the header position setting.

    Cheers!
    Josue

    #390126

    Josue..look at this.
    The menu items on the left are not consistent with the background. My client observed it 1st.
    However, I am now seeing it myself on my Ipad, It can’t be replicated on a desktop.

    http://windyheadsports.com/windy-tab.jpg

    Any suggestions?

    #390646

    Hey!

    Try adding this code to the Quick CSS:

    .html_header_sidebar #top #header{position: fixed; -webkit-backface-visibility: hidden; }
    

    Cheers! 
    Josue

    #391042
    This reply has been marked as private.
    #391924

    Hey!

    Try to add this to extend the header background:

    #header {
    background: #6ac1e0;
    }

    Hard refresh the page.

    Cheers!
    Ismael

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.