Dawn Theme: Body Text (only) letter-spacing and letter-height

Hello, how can I change body text styling only?

need:

letter-spacing: 0.01rem

line-height: 1.6

and mobile only:

font-size: 1.4rem

link to site: https://bit.ly/3A3sZKe

Hi @nd500

I’m Richard Nguyen - CRO Expert at PageFly- Free Landing Page Builder.

You can try with this code.

Follow this:

Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file

body{

letter-spacing: 0.01rem !important;

line-height: 1.6 !important;

}

@media screen and (max-width: 767px){

body {

font-size: 1.4rem !important;

}

}

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

Best regards,

Richard | PageFly

1 Like