Dawn — Header and Footer Text Color Conflict

Solved

Dawn — Header and Footer Text Color Conflict

vneznamova
Excursionist
20 0 3
Hi everyone,
 
I recently customized my header to be transparent, and to make the text visible, I set the header text color to white. However, this change also affects the footer text, making it white as well—which blends into the light footer background and becomes unreadable.
Screenshot 2025-04-25 at 13.19.52.pngScreenshot 2025-04-25 at 14.09.31.pngScreenshot 2025-04-25 at 14.09.51.pngScreenshot 2025-04-25 at 14.10.00.png
My goal is:
- Keep the header text white (for the transparent background),
- But have the footer text remain black (or default dark color).
 
How can I target the header and footer text styles separately in the Dawn theme? I’d appreciate any help or tips!
 
Thanks a lot in advance!
Accepted Solution (1)
mageplaza-cs
Shopify Partner
485 42 81

This is an accepted solution.

@vneznamova 
Please add the following code to the base.css file.

footer li a.list-menu__item {
    color: #000000 !important;
}

*Result:

2025-04-26_17-46.png

Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants


If our suggestion works for you, please give it a Like or mark it as a Solution!


Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com

View solution in original post

Replies 6 (6)

mageplaza-cs
Shopify Partner
485 42 81

Hi @vneznamova 

I am from Mageplaza - Shopify solution expert.

 

Please add the following CSS code to the base.css file.

footer *{
    color: #000 !important;
}

 

Please let me know if it works as expected!

Best regards!

Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants


If our suggestion works for you, please give it a Like or mark it as a Solution!


Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com

vneznamova
Excursionist
20 0 3

Hey! Thanks, I have added the code and the footer turned white, as I have mentioned above both text and background. I need a text to be black, background white in the footer. Any ideas how to do that?

mageplaza-cs
Shopify Partner
485 42 81

@vneznamova 

Could you send me the website URL?

Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants


If our suggestion works for you, please give it a Like or mark it as a Solution!


Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com

vneznamova
Excursionist
20 0 3
mageplaza-cs
Shopify Partner
485 42 81

This is an accepted solution.

@vneznamova 
Please add the following code to the base.css file.

footer li a.list-menu__item {
    color: #000000 !important;
}

*Result:

2025-04-26_17-46.png

Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants


If our suggestion works for you, please give it a Like or mark it as a Solution!


Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com

vneznamova
Excursionist
20 0 3

Thank you! Worked!