Making single post images smaller in renew

Is there a way to make the images on the individual post pages smaller? I have looked at other responses and didn’t understand how to do that. I want them all to be 600 x 900. Also, is there a way to have the text of the post wrap around it, so image on the left and text next to it. I want to be able to add more than one image. So another option that might work would be to remove the image altogether on the individual post page (just have it show up on the main blog page) and then add photos into the body of the post.

How would I do that?
Thanks,
Sheila

Hello Sheila,

Thanks for asking. :slight_smile:

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


/* CSS to adjust the size of image */

.single-post .entry-featured {
    width: 50%;
    float: left;
    margin-right: 20px;
}

/* CSS to remove featured image on post page */

.single-post .entry-featured {
    display: none;
}

Thanks.

Thanks, it worked!

We are delighted to assist you with this.

Cheers!

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