Archived topic
Control Featured image in blog post
2 replies · Started by Kristian Carøe on April 21, 2017
Hi
If I choose a featured image for a blog post, and in the Blog part of appearance sets the size to a custom size it looks nice. But if I then click on the post show I can read the complete blog post, the image is shown in its full size. Is there a place where I can controll this in-post-size-featured-image ?
You can see it here http://www.cfonline.dk only post there is.
Hi Kristian,
Looks like you are hiding the feature image in single post right now?
If can restrict the size with CSS like this:
.page-header-image-single {
max-width: 800px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps.
First you would want to put your image inside the content area in Customize > Layout > Page Header.
Then you would use this CSS:
.page-header-image-single img {
max-width: 100px;
}