Hi all,
Could someone please help me with resizing the the page feature image? It’s quite large and i’d like it centred and about half the size it currently is.
I have managed to do this for blog posts but I’m stuck on the page image.
Thanks!
Hi all,
Could someone please help me with resizing the the page feature image? It’s quite large and i’d like it centred and about half the size it currently is.
I have managed to do this for blog posts but I’m stuck on the page image.
Thanks!
Hi,
To resize the featured image, you can add the code below in Theme Options > CSS
/* for post page */
.single-post .entry-featured {
width: 50%;
margin-left: auto;
margin-right: auto;
}
/* for page */
.page .entry-featured {
width: 50%;
margin-left: auto;
margin-right: auto;
}
/* for blog page */
.blog .entry-featured {
width: 50%;
margin-left: auto;
margin-right: auto;
}
You may change 50% to adjust the width
I’ll list below some CSS/HTML resources that should help you to carry on these modifications on your own in the future:
Thanks
Thank you so much for your help.
You’re welcome! 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.