Hello,
I’m am trying to change the aspect ratio of the preview pic of the ‘Single autor small preview pic’ style of blogposts.
I want a 3 x 2 ratio instead of square.
Where can I change this?
Also
I removed all rounded corners with:
img {
border-radius: 0!important;
}
This doesn’t affect the preview pic. Is it possible to remove the rounded corners here aswell?
I am looking forward to your response.
Thank you
Hey emilcobussen!
Try adding this to your custom CSS.
.blog-meta, .blog-meta a, .blog-meta img {
width: 220px !important;
max-width: 220px !important;
max-height: 170px;
height: 170px;
border-radius: 0px !important;
}
Cheers!
Elliott
Thank you Elliott, works great!