Archived topic
Category archive template
2 replies · Started by Eaydman on March 24, 2021
Viewing posts 1–3 of 3
Hi,
My category archive page is looking not so good.
How do I change my archive template to look good ?
Its the archive post image size that is the biggest problem
Hi there,
theres no magical way to fix images when they are all of various sizes and aspect ratios.
The most you can do is to give them a fixed height and force the image to cover the space... try this CSS to do that:
body:not(.single) .post-image img {
height: 200px;
object-fit: cover;
}
However, this does mean that some of the images will be cropped.
This archived topic is closed to new replies.