• Resolved felttipfeelings

    (@felttipfeelings)


    My right mobile menu is showing both the nav titles and the images (from your other plugin) right next to each other. Is there a way to style this or pick just one or the other?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Rui Guerreiro

    (@takanakui)

    Hi @felttipfeelings,

    Add the code below to the Additional CSS field inside the Theme customizer (Appearance-> Customize -> Additional CSS)

    .mobmenu-content span.menu-image-title {
        display: none;
    }

    Will try to replicate it in my development server to figure out a final solution for it.

    Thanks.

    Thread Starter felttipfeelings

    (@felttipfeelings)

    That worked! Thank you much.

    Plugin Author Rui Guerreiro

    (@takanakui)

    No problem. I’m glad it’s sorted.

    Thread Starter felttipfeelings

    (@felttipfeelings)

    Thanks. One other issue I noted is that when I add hover images through the Menu Image plugin, they become my default buttons on the mobile menu. Note the red color on mobile.

    Plugin Author Rui Guerreiro

    (@takanakui)

    Try this custom CSS.

    .menu-item .menu-image-hover-wrapper img.hovered-image {
        opacity: 0;
        transition: opacity 0.25s ease-in-out 0s;
    }
    .menu-item a:hover .menu-image-hover-wrapper img.hovered-image {
        opacity: 1;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Right Mobile Menu Showing Image + Text’ is closed to new replies.