Hi,
Please can you tell me how to resize the featured image in a blog post? Currently, the image is really huge, taking up the whole screen! I just want a small image.
Thankyou :-)
Can you please share the url where this issue is appearing and also the steps to replicate this issue .
Hi,
it is happening in each of the blog pages here:
http://imlearningenglishexams.com/blog/
I just want a small picture, but it automatically makes it huge.
Thanks!
The images on the single post page will be the same as that of the image .
If you want to reduce the size of the featured image on single post page then you can try this css :
.single .featured img {
width: 25%;
}
The featured images are of different sizes in height and width. We have made the width of each image the same and height is auto . Please check the width of the images on the bog page is constant while the height varies as per image size . We can provide you
That has worked, thanks.
Is it possible to make the picture kind of embedded in the text? What I mean is, can the text from the post go where all the white space is in the picture?
Thanks a lot :-)
Try adding the given css from wp-admin -> appearance -> customize -> custom css :
.single .featured img {
width: 25%;
display: inline-block;
float: left;
margin-right: 34px;
margin-top: 30px;
}
Works great, thanks Alex!