Post featured image looks too big

Hi there,
I created a new post and set 700*700 image size as featured image.
It looks very big in the post.

  1. How to fix this ?
  2. Can I create templates for posts (blog)?

https://www.letssgo.com/uncategorized/entertainment-this-week/

Thanks

Hi @amitd,

Thank you for reaching out to us.

  • You can change the display size of your featured image via custom CSS, try adding the following code in the Theme Options > CSS:
.single-post .entry-featured {
    background: #fff;
    border-bottom: none;
}
.single-post .entry-featured .entry-thumb {
    max-width: 50%;
    margin: 0 auto;
}

Or if you want to show the featured image full width then you could add this code instead:

.single-post .entry-featured .entry-thumb img {
    max-height: 500px;
    object-fit: cover;
}
  • Regretfully, I am not entirely certain what you mean by the creating templates for posts. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots) and the url, we’ll be happy to provide you with a response once we have a better understanding of the situation.

Thanks!

Thank a lot. It works.
About the point, I am exploring wordpress Gutenberg, so let me see if template is required or not.
Thanks

You’re welcome, @amitd.

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