- This topic has 1 reply, 2 voices, and was last updated 5 years, 5 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Hello,
On mobile version of my site, there is a menu which is showing which has a downward arrow. I don’t want this menu to appear, how do I remove it?
I have no need for that menu because I have plugin installed for using menu.
please visit https://faceandbrowcosmetics.com/ on a mobile device to see that menu. It’s showing like this ^ but downward one.
I have to install SSL certificate yet, so if you are visiting on Chrome you might get warning. Please ignore, it’s safe!
Thanks
Hi #ratty1702
Please navigate to Dashboard > Appearance > Customize > Aditional CSS and following snippet:
@media screen and (max-width: 980px) {
#main-nav {
display: none;
}
}
This CSS snippet will hide mobile menu on media screens, only your created menu will appear.
Kind Regards