Resizing Feature Image on Post / Page

Did you want something like this?


You may need an !important on one or more of the properties below.

.featured-post-image {
    width: 50%;
    height: 300px;
    margin-right: auto;
    margin-left: auto;

Looks like you also need:

@media (max-width: 479px) {
.featured-post-image {
    width: auto;
}
}

There might be an additional breakpoint in the theme - you’ll have to play around with various sizes to figure out if you need an additional rule.

1 Like