How to change font size of body text dawn theme

I want to only change the font size of body text to 12px in mobile mode, but i dont know how…

Here is the link to my site: https://creamcy.com/

1 Like

@lorrnnzo

yes, please check theme customization its easy if don’t find so please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
body {
    font-size: 12px !important;
}

Hi @lorrnnzo ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css->paste below code at the bottom of the file:
@media (max-width: 749px) {
body {
    font-size: 12px !important;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.