Blog Displays in Categories

Hello,

I am trying to get my blog posts Thumbnails the same size in my categories some are longer than others and it does not look good. I am using Icon 01 Theme. Please take a look https://myplatebodyandmind.com/category/wellness/healthy-living-wellness/
I want them all to be the same size.

Thank you.

Hi Awilla,

Thanks for writing in!

The issue is not the size of the featured image. It is because the post titles and the post excerpts are not of the same height. To have a uniform grid height, you must set a minimum height for the title and the excerpts. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)



@media(min-width: 768px){
  .x-iso-container-posts .entry-title {
    min-height: 50px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
    text-align: left;
  }

  .x-iso-container-posts .entry-content.excerpt {
    min-height: 100px;
    margin-left: 0;;
    margin-right: 0;
    padding: 0;
  }  
}

And you will have something like this:

We would love to know if this works for you. Thank you.

1 Like

Hi,

Thank you very much it worked.

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.