• Haven’t went live w/ my site yet, but on the home page where all the posts show- how do I get the pictures to be all the same size? Seems some of my posts are long and others are wide. Is there a standard size I should be changing in my pictures or where do I change it? Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @anniegirlliving,

    Welcome and thanks for your question!

    ​The feature images you add on your posts have different sizes and most important different proportions (width – height). When they are shown on the Homepage or any list, the system will crop and reduce the image in one dimension (width) to fit the box and proportionally the heigh to not stretch or compact the image. That’s the reason you see that. How can you solve it? If you create your images having all the same proportions (380×200 based), then when they are reduced, they should all size the same. The second way is to force that, with some CSS code. The downside of it is that if you have a very large image, you’ll be cutting out what’s beyond the fixed size.

    ​If you still want to implement that, Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    ​.entry-thumb {
        height: 200px;
        overflow: hidden;
    }

    ​Try it and let me know how it worked.
    Kind regards,
    Diego

Viewing 1 replies (of 1 total)

The topic ‘Same size images on front page’ is closed to new replies.