Site logo

Archived topic

future image

4 replies · Started by Suresh Sudharsanam on October 31, 2019

Viewing posts 1–5 of 5

Hi, I would like the use future image on the blog post in home page.
i have noticed all images are not in standard size.. is it possible to add any CSS to keep all future images in same sizes.

Hi there,

can you provide a link to the Site so i can take a look at the issue?
You can edit your first post in this topic and use the Site URL field to share the link privately.

This CSS will force all featured images to cover a 200px square container:

.post-image img {
    width: 200px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;;
}

And this to reduce bottom margins:

.post-image-aligned-left .inside-article .post-image {
    margin-bottom: 0.25em'
}
This archived topic is closed to new replies.