• Resolved mattzulu

    (@mattzulu)


    Hi, I have a problem with 2 close buttons when the mobile menu opens.
    I have hidden everything else but this won’t go.

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

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

    (@takanakui)

    Hi,

    Add the code below to your custom css option inside the General Options tab.

    .show-nav-right .mob-menu-right-panel .mob-cancel-button {
        display: none;
    }

    Clear the browser cache and test again. Let me know the result.

    Thread Starter mattzulu

    (@mattzulu)

    Hi, thanks for the quick reply but unfortunately it didn’t work πŸ™

    Plugin Author Rui Guerreiro

    (@takanakui)

    Ok, it’s missing the important tag.

    This one will work.

    .show-nav-right .mob-menu-right-panel .mob-cancel-button {
        display: none!important;
    }
    Thread Starter mattzulu

    (@mattzulu)

    Great, thank you, that worked.

    The only issue now is I’m stuck with a close button from the theme that doesn’t work and I can’t disable, unless you have any ideas?

    Plugin Author Rui Guerreiro

    (@takanakui)

    That close button is from WP Mobile Menu.
    The layer of the menu panel is over that button that’s why you can’t click it. Let ‘s move the panel 40px down so it can work fine.

    try this code

    
    .mob-menu-slideout .mob-menu-right-panel, .mob-menu-slideout-over .mob-menu-right-panel{
     top:40px!important;
    }
    Thread Starter mattzulu

    (@mattzulu)

    Awesome, thank you so much! Works lovely now.
    Just left you a 5 star review πŸ™‚

    Would you know if there is a way to add custom text as well as a logo to the header?
    I would like to add a clickable phone number to the left of the menu but separate from the menu.

    Plugin Author Rui Guerreiro

    (@takanakui)

    can you provide me a mockup image so I can see how it should look and see what can be done?

    Thanks

    Thread Starter mattzulu

    (@mattzulu)

    Hi, yes something like this – https://we.tl/Pj4hzq5bkj
    Thank you

    Plugin Author Rui Guerreiro

    (@takanakui)

    Can you replace the line 245

    $right_menu_text = '';

    by this one

    $right_menu_text = '<div class="header-phone-holder"><span class="bristol-text">bristol:</span><a href="tel:+4401173709634"> 0117 370 9634</a> <span class="london-text">london:</span><a href="tel:+4402070789895"> 0207 078 9895</a></div>';

    This should do it.

    In the next version will add some hooks and filters so this can be done in a child theme avoiding any problems with the updates.

    Thread Starter mattzulu

    (@mattzulu)

    Fantastic!
    Once again thank you so much for an amazing plugin and support πŸ™‚

    Plugin Author Rui Guerreiro

    (@takanakui)

    No problem. Happy to help.
    πŸ™‚

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Two Close Buttons’ is closed to new replies.