Hi, I’m using the horizon theme. Website is parkkafeengjovik.no. Currently, on the mobile version, you can see the hamburger menu, but also all the menu options are displayed at the top of the page. How can I remove them so that only the hamburger icon is displayed on the mobile version?
Hi @pnd195
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > style.css and paste this at the bottow of the file
@media screen and (max-width: 749px) {
.header__row–mobile {display: none !important;}
}
Best regards,
Devcoder ![]()
hi @devcoders , there is no style.css. Would it be base.css or theme.css instead?
Hi @pnd195
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > base.css and paste this at the bottom of the file
It didn’t work unfortunately
Hey @pnd195
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
.header__row.header__row--mobile.desktop\:hidden.color-scheme-1 {
display: none !important;
}
</style>
RESULT:
Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.
Best,
Moeed
Hey there @pnd195
In Horizon it usually happens when the header or navigation block is configured to show menu items with the mobile menu. Go to your Theme Editor > Header > and see if you find anything there related to mobile navigation or menu layout or show navigation links on mobile.
In case there isn’t an option to do so, you can hide the menu links on mobile with a bit of CSS in your theme’s custom CSS section while still having the hamburger menu visible. Test the change first to be sure you’re not breaking desktop navigation.
No need to mess with any files. You can actually fix this right in your theme’s header settings
- Go to your Shopify Admin and navigate to Online Store > Themes.
- Click the green Customize button on your active theme to open the editor.
- In the left-hand sidebar menu, click on the Header section.
- Look through the settings on the right side for a section labeled Navigation Layout, Mobile Menu, or Desktop Menu Visibility.
- Change the layout setting so that the main desktop links are explicitly set to hide or switch to a dropdown format on smaller screens, then hit Save in the top right corner.

