Hello, I would like to change color of the text in the header and also change color of the search and cart icon. Thanks
https://c31a31-2.myshopify.com/
pass: owhown
Hello, I would like to change color of the text in the header and also change color of the search and cart icon. Thanks
https://c31a31-2.myshopify.com/
pass: owhown
Hi @Cukrovinky
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
Hello @Cukrovinky ![]()
In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.header__menu-item,
.header__active-menu-item,
.header__icon svg {
color: #FFFFFF !important;
}
The result
Hope that helps.
Hi Cukrovinky,
In Shopify Admin, navigate to “Edit theme code”, then open the “base.css” file and add the following code at the end:
.header__menu-item, .header__active-menu-item, .header__icon{
color: red;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hi cukrovinky,
Follow these steps :
Go to Online Store
Edit Code
Find base.css file
And put this code in the botom
.header__menu-item span {
color: white;
}
.header__icon .icon {
color: white;
Thanks for the solution. Can you also do code that removes the underline and color for hover and active page of the menu?