Feautured image showing too large

Hello, is there a way to keep the featured image smaller after visiting the post instead of it showing full-screen (and keep quality)? I did find some CSS which did make it smaller, but I feel quality is lacking. Please help

Below is the code I found, but I’m open to any solution:

.entry-thumb {
background: none !important;
}

.entry-thumb img {
min-width: 50% !important;
margin: 0 auto !important;
display: block !important;
}

Site: wealthofmarriage.com

Hi @McCabe,

Thanks for writing in.

Please change that CSS to this,

.single-post .entry-thumb {
    max-width: 583px;
    margin: 0 auto;
}

Thanks!

1 Like

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