Changing the color of body text on mobile, Dawn Theme

Hi! Does anyone know how to change the color of body text for Dawn Theme, specifically for Mobile view?
I saw from another forum that I can adjust that in the theme.liquid file, and have made the changes. But this only changed for the desktop view and not mobile. Anyone know why please? Thanks!

1 Like

Hi, @Verterra

May be covered by the style of the mobile end. Please share the store URL and take a screenshot to describe your requirements so that I can assist you.

Hi @Verterra

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (max-width:767px){
.gradient {
background: #bdb4b4;
}
}

Hello @Verterra ,

Please share the store URL (storefront password) so that I can check and suggest a possible solution.

Thank you

Hi! The preview link for the store is: https://verterra.sg/?_ab=0&_fd=0&_sc=1&preview_theme_id=168553546011

1 Like

Hi! The preview link for the store is: https://verterra.sg/?_ab=0&_fd=0&_sc=1&preview_theme_id=168553546011

I just want to change the body font to a colour that is darker :slightly_smiling_face: Right now it is a light grey which I feel is difficult to read on smaller mobile screens. Thank you!

Change the alpha to 1.

Hi @Verterra

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (max-width:767px){
.gradient {
background: #b4aa98;
}
}