How do I add more space in my heading menu, below my logo? I am using a Turbo theme.
My website is www.blushandboldco.com
A Turbo theme user seeks to increase spacing in their header menu below the logo. Multiple developers provided CSS solutions with varying approaches:
Main Solutions Offered:
.main-nav with properties like padding, row-gap, and flexbox adjustments.header__logo line-height property (changing from default to line-height: 3)theme.liquid before the </head> tag or in styles.cssImplementation Locations:
styles.css in the Assets foldertheme.liquidCurrent Status:
The issue remains unresolved. The original poster tried at least one solution but reported it didn’t work, and noted they don’t have a BASE.css file under assets as one responder suggested. They also questioned whether having “turbo menus” versus regular main menus affects the solution.
Screenshots were shared showing the desired outcome, but the specific CSS implementation that works for this Turbo theme configuration hasn’t been confirmed.
How do I add more space in my heading menu, below my logo? I am using a Turbo theme.
My website is www.blushandboldco.com
Hi @Tperez4988 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hello @Tperez4988 , Please follow these steps to add this CSS code:
search .main-nav in the styles.css file.
.main-nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
row-gap: 15px; /* add this new CSS to add gap/space */
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Hello @Tperez4988
Go to online store ----> themes ----> actions ----> edit code ---->assets ----> styles.css —> line number 4422
search this code
.header__logo {
line-height: 1;
}
and replace with this code
.header__logo {
line-height: 3;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @Tperez4988 , Please follow these steps to add this CSS code:
.main-nav__wrapper .nav {
margin-top: 15px;
}
Here is the screenshot of the same.
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
I did that. But it looks like it did not work. Does it matter that some are turbo menus and a regular main menu?
Hi @Tperez4988 ,
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi. Thanks for your help, but I do not have that BASE.css under asset.