Archived topic
How to get curved corners? like these
3 replies · Started by Krish on October 13, 2022
Viewing posts 1–4 of 4
How to get curved corners for Archive and blog page?
Example: 
I want to show the posts like this example.
Please take a look at my current look:
Hi there,
try adding this CSS:
.post-image img {
border-radius: 20px;
}
Got it.
But how can i change the images to square? Just like the example.
Thanks
Hi Krish,
Try replacing the code here: https://generatepress.com/forums/topic/how-to-get-curved-corners-like-these/#post-2372081
with this:
article .post-image img {
border-radius: 20px;
aspect-ratio: 1/1;
object-fit: cover;
}
This archived topic is closed to new replies.