Is there any way to remove the Categories Top Menu on Web Browsing, but keep it on Mobile Browsing?
I used the Custom CSS Module (with thanks to viethemes) to which I added...
#menu {
display: none;
}
...works great on the browser, however this also removes the menu from Mobile browsing. Is there any way to remove from a browser only, keeping the Categories Menu alive on Mobiles?
[Custom CSS Module used: http://www.opencart.com/index.php?route ... stom%20css]
You can add code below to Custom CSS:
Code: Select all
@media (min-width: 768px) {
#menu {
display: none;
}
}
http://www.viethemes.com - OpenCart turtorials, news, tips and stricks, extension
Our extensions:
Visual Theme Editor - Powerful tool for customizing style of any theme visually
Live Theme Editor - Customize layout, colors, backgrounds, fonts of the default theme
Theme Animation - Animation Editor for any theme
Extra Positions PRO, Custom JavaScript, Custom CSS and others

http://www.viethemes.com - OpenCart turtorials, news, tips and stricks, extension
Our extensions:
Visual Theme Editor - Powerful tool for customizing style of any theme visually
Live Theme Editor - Customize layout, colors, backgrounds, fonts of the default theme
Theme Animation - Animation Editor for any theme
Extra Positions PRO, Custom JavaScript, Custom CSS and others
Users browsing this forum: No registered users and 5 guests