Hello,
How can I change the text color to white in the sub headings under Privacy Policy? The rest of the information is white, but the subheadings are black. What can I do to fix this? Thank you!
Site: 0edra6-mk.myshopify.com
Password: Welcome1
Hello,
How can I change the text color to white in the sub headings under Privacy Policy? The rest of the information is white, but the subheadings are black. What can I do to fix this? Thank you!
Site: 0edra6-mk.myshopify.com
Password: Welcome1
Hello @VictoriaNguyen
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.
.shopify-policy__container h2,h3,h4,h5,h6 {
color: #fff;
}
Please add this code to Custom CSS in Sales Channels > Online Store > Themes > Customize > Theme settings
.shopify-policy__body h2 { color: #fff !important; }
Hello @VictoriaNguyen
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
h2, h3 {
color: white !important;
}
Result
Thanks