- This topic has 5 replies, 2 voices, and was last updated 8 years, 8 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › featured post fonts
how do i change the font size and color of the genesis featured post?
Do you have a link where this is taking place? If you can post a link I can tell you exactly what lines you’ll need to change in your css.
hi wes! here’s the link. http://mercygrass.com .. i was able to change the colors.. but the size, i could not. ๐
Take a look around line 1358 in your css for this –
.home-feature-bg .featuredpage .page h2 a,
.home-feature-bg .featuredpost .post h2 a {
font-size: 15px;
}
and let me know if that works.
hi wes… it doesn’t seem to work… though the most important now is, i really want to change the size of the title of the featured post /page
The above code is for the title area, for the regular paragraph text add the same thing but remove the h2 a
like this –
.home-feature-bg .featuredpage .page,
.home-feature-bg .featuredpost .post {
font-size: 15px;
}
Both of those codes work when I test it on your site.