Hey,
So first off I’m seeing this in your css:
.container {
width: 900px !important;
}
That is breaking the mobile layout. You need to give it a media query. Like this:
@media (min-width: 992px) {
.container {
width: 900px !important;
}
}
Then to make your desktop menu appear on mobile try using this css:
#nav-main ul.sf-menu {
display: inline-block !important;
}
Just paste it in your custom css box in Theme Options > Advanced Settings.
Hope it helps!
Hannah
Hey Hannah,
Thank you so much! You are awesome! 🙂