Portrait pictures in Featured and Latest Sections
Ideally, would love to have similar solution to this that you recommended for search results view:
You can increase both image and and height with following CSS code, just put it into Appearance - Customize - Additional CSS Code:
article.display-list .item-cover {
height: 21.125rem;
}
@media screen and (min-width: 40em) {
.listing-wrap article.display-list {
height: 21.125rem;
}
You had also mentioned:
"One thing you could do if you have a niche website that showcases people for example... modify WordPress to crop images from center->top
By default its center->center which means it will most likely chop off some heads when images are portraits"
Forgive my ignorance but how exactly is this done in Wordpress?
Thanks.