Trying to adjust the border color on our menu on Mobile. Where can I do so?
Currently the border is black which meshes with the menu items and creates no border.
https://dmaxstore.com/ Top left menu on Mobile
1 Like
Do you mean like this?
if it is check 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:
nav#mobileNav .border-bottom {
border-color: white;
}
And Save.
1 Like