Hello,
I did some searching before posting this and I found no useful answer.
PROBLEM:
Menu is not working on mobile.
WHAT I DID:
Tried it on 3 smartphones and by resizing the desktop Chrome to mobile size.
I tried disabling ALL plugins but it still don’t work.
Please tell me where I can send a link to my site.
-
This topic was modified 12 years by
mrsky28.
Hello,
Please send via email at contact@tagdiv.com
Also you can give us access to WP to take a look?
Please write in message title FOR MARIUS and also paste a link from this conversation.
Thanks for the message!
You ok with me posting URLs in the thread? http://billyscrashhelmets.co.uk
Hi,
You have no menu because you use the top one and that one it’s hidden on mobile, If you want you can add a menu or you can add this
CSS in Theme Panel > Custom CSS:
@media (max-width: 767px) {
.td-header-menu-wrap {
display: block !important;
}
.mobile-logo-wrap img {
top: 0px !important;
}
}
This way you will set the top menu to appear on mobile too. Unfortunately it will look like this: http://screencast.com/t/h2aWk9lQDKOS
Thanks
Can you give me a code that will work so I have the right Menu on the mobile version?
I want the menu right next to the “Home” logo to be shown
Hi,
Please add this custom CSS in Theme Panel > Custom CSS:
@media (max-width: 767px){
.td-menu-wrap #td-top-menu {
display: block;
}
#td-top-mobile-toggle {
display: none;
}
.header-search-wrap {
display: none !important;
}
.td-grid-wrap {
padding-top: 0px;
}
}
Thanks
