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
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.