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; }
}
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
Mike, you are a genius – I missed that! It works perfectly, thank you so very much. Mark