Deactivate mobile header
-
Hey Armin,
first of all, thanks so much for the great lay theme! it helped me a lot.
I was wondering if there´s a way to deactivate the mobile-version menu/header. In my menu (www.saonkeer.com) there are only 3 options, so I don´t necessarily need a smaller version for phones. It should look like the desktop-version. Looking forward to hearing from you.thanks a lot!
best,
Paul -
I don't know if it can help you, but I used this to disable the mobile menu on "Custom CSS for Mobile Version" in Lay Options/Misc Options:
.navbar{
display: none !important;
} -
Ok so you have hidden the menu with Serguei's css. Now to make the logo appear you could use this in "Custom CSS for Mobile Version" in Lay Options/Misc Options:
.sitetitle { display: block; position: fixed; top: 10px; left: 10px; }You can style it however you want with CSS!