I am using Stiletto theme.
my store url is: www.winnerofficial.com
A user working with the Stiletto theme wants to modify the mobile menu by converting section text to lowercase and removing dividing bars.
Solution provided:
.drawer-menu__item class with:
text-transform: lowercase !important; (converts text to lowercase)border-bottom: none !important; (removes dividing bars)The solution includes a code snippet and visual result screenshot. The responder requests the user mark the post as a solution if it resolves the issue.
I am using Stiletto theme.
my store url is: www.winnerofficial.com
Hi @martujv
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:
@media only screen and (max-width: 959px){
.drawer-menu__item {
text-transform: lowercase !important;
border-bottom: none !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!