Mobile Menu back to Text

Hello X Team,

Here is my test site…
http://gritprodv2.bluetroop.com/

For the desktop version, I am using images for the nav to get the effects I want. However, when the site reduces down to mobile, the menu does not function. Can you please help get back the text-based mobile menu that would normally be there for X Theme/Renew3? I don’t need the image menu when it is reduced down.

Thank you,
Lorne

Hi Lorne,

Thank you for reaching out to us. To fix the issue, please add the following code in the Theme Options > CSS:

@media screen and (max-width: 979px) {
    .menu-image-hover-wrapper {
        display: none !important;
    }
    .menu-item a.menu-image-title-hide .menu-image-title {
        display: inline-block !important;
    }
    ul.x-nav {
        display: block !important;
    }
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

Works very well, thank you for your help.

You’re welcome. Glad we’re able to help.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.