Home › Forums › WoodMart support forum › How can I fix height of grid and image on blog page like on home page › Reply To: How can I fix height of grid and image on blog page like on home page
August 5, 2024 at 5:01 pm
#588159
Artem Temos
Keymaster
You can use the following custom CSS code for this purpose
.wd-post .entry-thumbnail img {
aspect-ratio: 300 / 130;
object-position: 50% 50%;
object-fit: cover;
}