Changing font size of Post Title
-
Hi,
for my blog https://40nagers.com/ I owuld like to change the font size of the pinned post ONLY, the “Oversize and Microbags” just to be clear.
do you know which code I should include in the CSS?
The blog I need help with is: (visible only to logged in users)
-
Hello there!
Dropping this code in your custom CSS area should do the trick:
.flexslider .featured h1 { font-size: 42px; }Then you can just feel free to modify the number of pixels to match the size you’re looking for.
Let me know if that doesn’t work!
Sage -
that’great, it worked, thank you.
One last thing if I may, is it possible to remove the estimated read time?
-
Sure is!
Here’s the code if you wouldn’t like it on any of the blocks:
.reading-time { display: none; } .entry-meta span { margin-right: 0; }Or use this if you only want it removed from the featured image section:
.flexslider .reading-time { display: none; } .flexslider .entry-meta span { margin-right: 0; }Hope that helps,
Sage -
-
Ah, modifying the first code so that it looks like:
.reading-time { display: none !important; }Should do it.
Let me know if that doesn’t work!
Sage -
-
- The topic ‘Changing font size of Post Title’ is closed to new replies.