Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #725244

    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.

    #726181

    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

    • This reply was modified 7 years, 11 months ago by Yigit.
    #726185

    Perfect, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Featured post image no responsive’ is closed to new replies.