Hi all,
I am using the Dawn Theme. If you go to my website at www.PennsylvaniaParks.org you will notice how the title and buttons are white but the text below the title and above the buttons appears to be grey? Why is that and how can I make the text all white? I think it would just be easier to read that way.
Thanks so much!
Hi @Justin34 ,
Just add this code to your base.css under the Asset folder.
.banner__box .banner__text subtitle {
color: #fff !important;
}
Hi @Justin34 ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/section-image-banner.css->paste below code at the bottom of the file:
@media (min-width: 750px) {
.banner__box .banner__text.subtitle {
color: #fff !important;
}
}
Hope it can help you.
@Justin34 , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > base**.css** and paste this at the bottom of the file:
@media (min-width: 750px) {
[id] [id] .banner__box .banner__text.subtitle {
color: rgb(var(--color-foreground)) !important;
}
}
This code will automatically identify the title’s color and use the same HEX.
Kind regards,
Diego
Worked perfectly… thanks!!