Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1010484

    Theme: Enfold
    Version: 4.4.1

    I have not made any changes to the site but have just noticed in Safari that the main menu is not showing (it was previously a hambuger menu).

    I have the following code, which may need adjusting?

    body {
    font-size: 16px;
    }
    
    @media only screen and (max-width: 768px) {
    .avia-layerslider {
    display: none!important;
    }}
    
    @media only screen and (max-width: 1250px) {
    .custom-font {
    font-size: 30px !important;
    }}
    
    @media only screen and (min-width: 1250px) {
    .custom-font {
    font-size: 40px !important;
    }}
    
    .avia-button {
    font-size: 23px !important;
    }
    
    @media screen and (max-width: 1250px) {
    nav.main_menu { display: none !important; }
    #advanced_menu_toggle { display: block !important; }
    }
    #1010492

    Hey Mark,
    Please try changing this css:

    @media screen and (max-width: 1250px) {
    nav.main_menu { display: none !important; }
    #advanced_menu_toggle { display: block !important; }
    }

    to:

    @media screen and (max-width: 1250px) {
    nav.main_menu { display: block !important; }
    #advanced_menu_toggle { display: block !important; }
    }

    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #1010494

    Mike, you are a genius – I missed that! It works perfectly, thank you so very much. Mark

    #1010552

    Hi Mark,

    Great, glad you got it working :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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