Hi.
Thank you for your brilliant ENFOLD Theme.
I have a little issue:
Featured images, in blog post are not showed correctly in mobile devices. They are stretched vertically.
Please login to see my blog.
Thank you.
Hey vmoralestejedor,
You have following custom CSS code
.big-preview img {
height: 360px;
width: 1200 !important;
}
Please remove it or wrap it inside a media query to apply on certain screensizes as following
@media only screen and (min-width: 990px) {
.big-preview img {
height: 360px;
width: 1200px !important;
}}
Best regards,
Yigit
Perfect, thank you!