Hi,
I’m trying to resize the font of the blog post titles and the letter spacing. It’s at the bottom of the page under “LFA Happenings”
I want it to be
letter-spacing: 0px;
font-size: .7em;
But I can’t figure out the CSS class. Also I dont want it messing up my blog on the blog page.
Hey MikeTandySwag,
Please add a custom class to the column in question, in the Advanced tab in the element options. Then add this to to Quick CSS:
.your-custom-class .post-title a {
letter-spacing: 0px;
font-size: .7em;
}
Replace your-custom-class in the code above, with your own class name.
Best regards,
Rikard
Thanks!