Do I need to add a menu? On my homepage the text “add a menu” is appearing even after I deleted the menu. At this time, I want to just keep the static homepage with no menu and do not want that text of “add a menu” to appear on the top right corner of the website. How can I remove that?
Thank you!
H i@frankieg1150,
I saw now that you don’t have it on your page.
thanks,
Cristian
Yes, I was able to figure out the code to remove the menu, but it is still showing on the mobile and tablet view. How can I remove the menu on the mobile and tablet view?
Thank you!
Hi @frankieg1150,
With this:
@media only screen and (max-width: 992px)
.open-responsive-menu {
display:none;
}
Thanks,
Cristian
The code you provided to remove the menu on the mobile and tablet view is not working. . .
@media only screen and (max-width: 992px)
.open-responsive-menu {
display:none;
}
Any update on this?
The code you provided to remove the menu on the mobile and tablet view is not working. . .
@media only screen and (max-width: 992px)
.open-responsive-menu {
display:none;
}
Hello,
Please add the following code :
`@media only screen and (max-width: 992px){
.open-responsive-menu {
display:none;
}
}
Thanks,
George.