Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Single Autor Small Preview pic aspect ratio’ is closed to new replies.
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!