Archived topic
Hide post title (and space) from masonry grid view
1 reply · Started by TheSalvadorDaliOfWebsites on May 29, 2020
Dear GP-team,
As I'm making a purely visual portfolio style website I'd like if there is a way to disable / hide the titles of all posts from the masonry grid view. I have disabled the titles themselves by adding the following CSS in Customize > Additional CSS
.entry-title {
display: none;
}
This code leaves behind the space where the titles were. Is there an easy way to disable both title and its space? This would draw your excellent theme into a purely visual reprensentation of content.
Have a look at ragnhild.williamzeuthen.dk. It looks okay but there's too much empty space in top and bottom of the images.
Thank you,
The Salvador Dali of Websites
Hi there,
Try this CSS instead:
.post-image-above-header .masonry-container .inside-article div.post-image {
margin-bottom: 0;
}
.masonry-container .entry-header {
display: none;
}