How can i change body text and letter-spacing and letter-height in Dawn theme.
And mobile only has font size: 16px
Thank you
How can i change body text and letter-spacing and letter-height in Dawn theme.
And mobile only has font size: 16px
Thank you
Hi @marita2 ,
This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:
body{
letter-spacing: 0.01rem !important;
line-height: 1.6 !important;
}
@media screen and (max-width: 767px){
body {
font-size: 16px !important;
}
}
Hope my answer will help you.
Best regards,
Victor | PageFly
Thank you, you are amazing !
I want to ask more: How to make the text in body italic?
@marita2 ,
You can paste below code at the bottom of base.css file:
body {
font-style: italic !important;
}
Thank you so much Victor