I would like to change (reduce) the maxium size that featured images are displayed on full width single post pages. How can I do that?
example:
http://flowmojo.co.uk/uncategorized/news-article-4/
I would like to change (reduce) the maxium size that featured images are displayed on full width single post pages. How can I do that?
example:
http://flowmojo.co.uk/uncategorized/news-article-4/
Hello,
I hope you are doing well today.
You can try using this CSS code to change the image size:
.post-content .entry-header img {
width: 900px;
}
Another option is to go to Appearance > Editor > Functions.php and look for the line:
add_image_size( 'shapely-featured', 730, 350, true );
You can change the height and width variables here.
Best Regards,
Support