Hello,
I hope you can help me.
I create a web and I hide some modules in the mobile version (you can see it making smaller your navigator window), but now I need to show it again... but with my fish memory I don't know how I do it.... can you help me to know it?
The site is:
It's possible to find the code looking the source code? If not I can give you any information you need, because for me it's very important.
Thanks
Well in your style.css on
Well in your style.css on line 213 you have the following code:
ul#top-menu li ul, #mobile_menu { width: 170px !important; padding: 0; background: #161616 url(images/header-bg.png); top: 45px !important; -moz-box-shadow:3px 3px 7px 1px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1); box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1); -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; border-top-left-radius: 0px;-moz-border-radius-topleft: 0px; border-top-right-radius: 0px; -webkit-border-top-left-radius: 0px; -moz-border-radius-topright: 0px; -webkit-border-top-right-radius: 0px; z-index: 9999px; display: none; }
At the end you see that it has display: none
added, this means that the mobile menu will not be displayed.
Maybe take a look inside your code and find all the display: none commands.
All these are disabled and not showing. This is how you will find out which modules are disabled.
Cheers, Henk!