This topic has 2 replies, 2 voices, and was last updated 8 years, 11 months ago ago by Robert Hall
Hi,
My client has a online shop that has quite a lot of stuff in the main menu (https://laatikkokauppa.fi). When the site is viewed on small laptop (width eg. 1024px), the responsivity doesn’t yet kick in and thus the menu fills almost half of the screen – which is of course not good. How can I override the theme default for responsivity and make the menu switch to mobile menu earlier than what it is on default (around 995px)? I don’t have the time to go through all the scripts just to find out this one thing.
Thanks!
Hello,
Try to add the following code in custom.css file.
@media (min-width: 1100px){
.visible-desktop {
display: none !important;
}}
@media (max-width: 1100px){
.hidden-desktop {
display: inherit !important;
left: 0;
top: 50px !important;
}}
Here is a video tutorial how to create custom.css: https://www.youtube.com/watch?v=Qok2zRedRMY&feature=youtu.be.
Regards,
Robert Hall.
Tagged: best selling, menu problem, seo friendly, small laptop screen, themes, woocommerce
You must be logged in to reply to this topic.Log in/Sign up