How do I delete the burger icon on my homepage in the mobile format? I have no menu items associated with it. Thanks!
Hello Candace,
Thanks for writing in! Since you are not using any menu, you need to add CSS code into X > Theme Options > CSS . You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use. By default, you have this code:
.x-navbar {
display: block;
}
Setting the display into none should enables you to hide the navigation menu. Therefore, the final code you will have to add in X > Theme Options > Custom CSS will be:
.x-navbar {
display: none;
}
Keep in mind that this could potentially give you some issues later one. If you ever want to add back a navigation menu, simply remove the code. You also need to check this code every after theme updates. We are not the ones who will maintain this code.
Best Regards.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.
