Customize text from blog post
- The topic ‘Customize text from blog post’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Could you please give me the css to hide each of the parts individually of the text from the blog posts (when shown in the home page”: reading time, posted by, …
I would like to customize this area/text.
Also, is it possible to change the font size, not make it italic, etc?
Thanks a lot!
The blog I need help with is: (visible only to logged in users)
Hello biancahawk17,
Thank you for writing and using our theme :)
Yes of course, to hide elements of blog posts form Home Page:
– Categories:
.post-grid-content .categories-links-index {
display: none !important;
}
– Date:
.post-grid-content .posted-on {
display: none !important;
}
– Author:
.post-grid-content .byline {
display: none !important;
}
– Reading Time:
.post-grid-content .reading-time {
display: none !important;
}
To change font-size and font style (between normal or italic)
– Categories:
.post-grid-content .categories-links-index a {
font-size: 16px;
font-style: normal;
}
– Date:
.post-grid-content .posted-on {
font-size: 16px;
font-style: normal;
}
– Author:
.post-grid-content .byline {
font-size: 16px;
font-style: normal;
}
– Reading Time:
.post-grid-content .reading-time {
font-size: 16px;
font-style: normal;
}
Hope this helps.
Thank you again!
Ricardo P. from SiloCreativo