Making images even

http://bnmprojects.info/missionsoflove/about-2/

Can you please tell me how to make the three images the same size so they look even?

Hello There,

Thanks for writing in! The only way you can have your images to have the same size is to edit them back in a photo or image editor like Photoshop and make sure that they have the same dimension. Adding width or height using css or any styling is not a good idea. It will just squeeze or stretch the image which will not look good.

I can see that you already added a custom css. You have added this:

.promo-custom {
  margin: 0 auto;
  max-width: 275px;
}

You can add this code also:

.promo-custom .x-promo-image-wrap {
    overflow: hidden;
    text-align: center;
}

.promo-custom .x-promo-image-wrap img {
    min-width: 50%;
    max-height: 200px;
}

I cannot guarantee that it will look nicely. The best solution is to upload the image that has the same dimension.

Hope this helps.

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