featured content grid: how to remove/change .post-thumbnail height
-
I am trying to alter the height of the grid for featured content. I only want the text to show for three featured posts and no image above. I don’t want to have empty space above the text for the featured posts. I have tried reducing the padding for .post-thumbnail to 0, but no luck. I have a feeling it has something to do with the grid or the outer box the thumbnail is in but can’t figure out how to alter it. This is what I tried:
media=”all”
.featured-content .post-thumbnail {
display: block;
position: relative;
padding-top: 0;
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
}The blog I need help with is: (visible only to logged in users)
-
It looks like you just want to remove where the featured image will be and change some of the sizing. The first bit will sort out the top and the second bit will set the height for the title:
#featured-content .post-thumbnail { display:none; } #featured-content .entry-header { height:auto; } -
- The topic ‘featured content grid: how to remove/change .post-thumbnail height’ is closed to new replies.