- This topic has 1 reply, 2 voices, and was last updated 3 years, 5 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Hello, Ashe team Thank you for amazing theme!
I want to know the CSS that changes the width of letter spacing and line height.
@media screen and (max-width: 979px) {
.post-content {
letter-spacing: 0.1em !important;
}
}
Is this nice try?
Hi,
Yes, it’s close but you need to add P tag there, here it is:
@media screen and (max-width: 979px) {
.post-content p {
letter-spacing: 1.1em !important;
line-height: 16px !important;/*remove this line if you don't want to control line height*/
}
}
But you can control this from Customize > Typography.
Kind Regards