Hello:
we’re currently simplifying our webpage and noticed that in the Blog Post grid (follow private link), where only the titles of blog entries are displayed, the fonts are weirdly spaced out and with large spaces between lines.
How could we make them displayed in our standard font with 16px and normal spacing?
Thanks,
mbosse99
Hi mbosse99,
Can you try adding this CSS code in Enfold > General Styling > Quick CSS:
.html_modern-blog .avia-content-slider .slide-entry-title {
font-weight: normal;
letter-spacing: 0;
line-height: 1em;
}
#top h3.slide-entry-title a {
line-height: 1em;
}
Best regards,
Nikko
Hi mbosse99,
Please replace the last code I gave, with this one:
.html_modern-blog .avia-content-slider .slide-entry-title {
font-weight: normal;
letter-spacing: 0;
line-height: 0;
}
#top h3.slide-entry-title a {
line-height: 1.4em;
}
Best regards,
Nikko
Thanks, that looks already good! Finally, we’d like to change the spacing between lines accordingly also for the excerpt we display on our topical post grids (see private link). Thanks again! mbosse99
Hi mbosse99,
Please try to add this CSS code as well:
.avia-content-slider .slide-entry-excerpt {
line-height: 1.4em;
}
Best regards,
Nikko