Archived topic
future image
4 replies · Started by Suresh Sudharsanam on October 31, 2019
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.
here is the link. http://www.techeworks.com
also i would to reduce space which marked in yellow color.
please see the image https://www.techeworks.com/wp-content/uploads/2019/11/Capture.jpg
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'
}