How can i disable mobile menu?

Posted in: Newspaper
Post count: 12

Hello,
i want to use another plugin on my site’s mobile version. i can install plugin (tap tap by bonfire).
how can i disable theme’s default mobile menu?

Thanks,
Atakan

Post count: 23312

Hello atabrb,

Unfortunately, our theme does not have such an option to disable the mobile version, sorry! If you want to quit to the mobile menu, you can use a bit of CSS code to hide the mobile toggle icon to no longer has access to the menu in mobile mode.

The code is ->

#td-top-mobile-toggle {
display:none!important;
}

The result you should see here -> http://screencast.com/t/JiyDQ33F9P9

Hope this helps!

Thank you for the message!

Post count: 22421

Hi,
Unfortunately there is no way to disable it from the theme panel. You can however hide it with css:
@media (max-width:767px){
.td-header-menu-wrap-full{
display:none!important
}}

Hope this helps.
Thank you!

Post count: 12

Hi, thanks for answers but i want to remove all sections on mobile vers. (search icon, mobile sticky menu etc)
toggle removed, others still there 🙂

Thank you again.

Post count: 22421

Hi,
The code I provided does exactly that. It removes the menu entirely with the hamburger dropdown, the logo, the search icon and the sticky menu. Simply add the code in the theme panel->custom css box and it should work. Mind that different header styles can have different results. I tested it on the default header style. If the code does not work on your end please provide a link to your website so I can inspect it.
Thank you!

Post count: 12

Hi Bogdan,
Your code is worked. Thanks for your help.
Have a nice day.

Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.