When viewing dw focus on mobile version, the featured image is stretched and does not maintain the size ratio. How to fix this?
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
@media only screen and (max-device-width: 480px) {
.single .site-content > .hentry .entry-thumbnail img {
height: auto;
}
}
Hope this helps !
Please login or Register to submit your answer