A Shopify store owner using the Palo Alto theme wants to reposition their navigation menu below the header (currently inline with it) while maintaining icon placement near the logo. They also want to:
Support more than 5 menu items
Style the menu bar with background color #243e36
Add hover effect with color #7ca982
Use white text throughout
Solutions attempted:
CSS flexbox approach (tim_1): Successfully moved menu below header using custom CSS in Header section settings, but also moved search/account/cart icons down with it—not the desired outcome.
Color styling additions: Multiple CSS snippets provided to add the requested colors, but results were inconsistent (entire menu turned green in one case).
Theme file editing (oscprofessional, topnewyork): Suggestions to modify header.liquid and CSS files, but these either broke dropdown functionality or produced no visible changes.
Current status: The issue remains unresolved. The main challenge is separating the menu from the icons structurally, which may require deeper theme code modifications beyond CSS alone. The original poster continues seeking a working solution.
Summarized with AI on October 23.
AI used: claude-sonnet-4-5-20250929.
Happy Thursday. If possible i’m hoping for some assistance in putting our menu below the header on our website with the ability to have more than 5 menu items. At the moment it’s stuck in line with the header itself.
Ideally i’d like for the menu banner to be in colour #243e36 that highlights #7ca982 when hovered over, with white text.
Thanks so much for taking the time to reply. This code puts the search bar, account icon and cart icon down too. Is there a way to put the icons with the logo, and make the menu in colour #243e36 with #7ca982 when hovered over and white font?
You can absolutely move your main menu below the header and style it with your preferred colors in the Palo Alto theme — it just requires a small layout adjustment and some CSS styling.
Here’s how you can do it:
1. Move the menu below the header
Go to your Shopify admin → Online Store → Themes → Edit Code, then open the file: sections/header.liquid
Look for where your menu is rendered — it’ll look something like:
{% render 'header-menu' %}
Move that line below the closing tag for your header container (for example, right after the logo and icons block).
2. Add the styling
Now open your CSS file — typically base.css or theme.css — and add this code at the bottom:
1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.header {
flex-direction: column !important;
align-items: center !important;
}
.header__logo-wrapper {
margin-bottom: 15px !important;
justify-content: center !important;
}
.header__nav {
width: 100% !important;
justify-content: center !important;
}
.header__menu {
justify-content: center !important;
}
.header__nav {
background-color: #243e36; /* Aapka pasand ka menu banner color */
}
.header__nav-link {
color: #ffffff !important; /* Menu text ka white color */
}
.header__nav-link:hover {
background-color: #7ca982 !important; /* Hover karne par highlight color */
color: #ffffff !important; /* Hover par text ka color white hi rahega */
}
Thanks so much for taking the time to respond. I tried this and the menu successfully moved below the header. Unfortunately the menu no longer dropped down. The second code going to the theme css then didn’t make any changes and I had to revert it back to where it was as the menu no longer worked.
I’m only wanting the actual menu bar to be the colour, and then where the logo is to remain the same while keeping the icons up near the logo. Thank you for taking the time to respond anyway, it’s really appreciated.