Hi, I wanted to limit the height of featured images when the image is a square becuase the image becomes too large. For a rectangular image I dont mind letting it occupy the full width, but for square images I want to limit the height. Now, of course, this problem applies only to large screens, on smaller screens square images fit fine.
Hello Ravi,
Thanks for writing in!
To resolve your issue, please remove this custom css block:
.single .entry-featured {
display: none;
}
.single-post .entry-thumb {
max-width: 500px;
text-align: center;
}
And replace it with this css code instead:
.single-post .entry-thumb {
background-color: transparent;
text-align: center;
}
.single-post .entry-thumb img {
min-width: auto;
}
Please let us know how it goes.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.