Resizing featured image in posts

hi,

i placed the following code to reduce featured image in post pages which works nicely.

.single-post .entry-featured {
width:50%;
margin:0 auto;
display:block;
}

is there any chance you could assist me in making the featured image the same height but 100% width?

thanks,

darryn

Hi Darryn,

This is possible through custom CSS but I would not recommend it because it will most probably make the image looked stretched since you are forcing the image to have a certain height while forcing it to display fullwidth.

Please try this code:

.single-post .entry-featured {
    width:50%; 
    margin:0 auto;
    display:block;
    max-height: 400px;
}

Hope this helps.

Thanks Jade,

Much appreciated.

Regards,

Darryn

You’re welcome, Darryn.

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