Blog post too wide on main page

Hi there.

On my blog page (on a large screen) the featured image is stretched too much - how can I control this and make it more true to the correct dimensions?

Hello Mick,

Thanks for writing in!

Please add following CSS under Pro > Theme Options > CSS:

@media screen and (min-width: 1400px) {
  .entry-thumb {
    width: 80%;
    margin: 0 auto;
  }
}

To learn more about media queries, please take a look at following resource.

https://www.w3schools.com/css/css_rwd_mediaqueries.asp

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.