Access a community of over 900,000 Shopify Merchants and Partners and engage in meaningful conversations with your peers.
Hey friends,
I've been struggling when it comes to customizing the main Header menu on my front page. I would like to add space between the menu items so the header menu doesn't look so empty at its ends!
Poured through code for a few hours already but I feel like it's an exercise in futility. Any pointers for a rookie over here? I appreciate your time - Currently using the Out of the Sandbox Turbo theme if that's of any help!
Thank you for your time.
Solved! Go to the solution
This is an accepted solution.
If you want to add more spacing between the menu items, try adding this code at the very bottom of styles.scss file
.menu.align_right li{
padding-left: 40px;
padding-right: 0px;
}
.menu.align_left li{
padding-right: 40px;
}
End result:
I hope it answers the question!
This is an accepted solution.
If you want to add more spacing between the menu items, try adding this code at the very bottom of styles.scss file
.menu.align_right li{
padding-left: 40px;
padding-right: 0px;
}
.menu.align_left li{
padding-right: 40px;
}
End result:
I hope it answers the question!
You sir are a gentleman and a scholar. Thanks a ton - helped me out a ton! Have a wonderful day.
Thank you! Should you will have any questions, feel free to PM me.
What if your theme doesn't have the styles.css?