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.
Hi, thanks for the quick reply but unfortunately it didn’t work π
Ok, it’s missing the important tag.
This one will work.
.show-nav-right .mob-menu-right-panel .mob-cancel-button {
display: none!important;
}
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?
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;
}
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.
can you provide me a mockup image so I can see how it should look and see what can be done?
Thanks
Hi, yes something like this – https://we.tl/Pj4hzq5bkj
Thank you
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.
Fantastic!
Once again thank you so much for an amazing plugin and support π
No problem. Happy to help.
π