Hi there!
I’m trying to change the width of my menu by adding the following code in base.css however no change happened, do you know what I still need to include? thank you
Site: wholenest.co
@media only screen and (min-width: 750px){
header.header.header–middle-left.page-width.header–has-menu{
padding: 0 rem !important;
}
1 Like
Hi @wholenest
Do you mean like this?
If it is try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
header.header.header--middle-left.page-width.header--has-menu {
max-width: 100%;
padding-top: 0px;
padding-bottom: 0px;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!