Hi all,
I want to change the button “Uitverkoop” in my menu to red.
However i cannot find the solution to do so. I have tried a lot of solutions given here on the forum but it wont work.
I use the Craft theme.
i also want it to be red in the mobile version.
Can anyone help me out?
Hey, please provide the store URL
Hi @VividHome
Would you mind to share your Store URL website? with password if its protected. Thanks!
Thank you for the information. 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:
#HeaderMenu-uitverkoop > span {
color: red;
}
@media only screen and (max-width: 989px){
a#HeaderDrawer-uitverkoop {
color: red;
}
}
- And Save.
- This will show also in the mobile.
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!