Hello,
How to set the size limit of a normal post featured image to
a normal standard size and not let the image take over the post
without having to resize each individual image?
Hello,
How to set the size limit of a normal post featured image to
a normal standard size and not let the image take over the post
without having to resize each individual image?
Hey Erick,
Your site is currently down. Please contact your host to fix this first.

Thanks.
fixed, sorry about that.
Hi There,
Please try adding the following CSS under Theme Options > CSS:
.single-post .entry-thumb img {
min-width: inherit;
height: auto;
}
.single-post .entry-featured {
float: left;
}
.single-post .entry-content {
clear: both;
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Hope this helps!
sorry still can not get the featured image to size down and look correct,
still taking up the entire page.
how can I set the size or use a normal default size?
Hi Erick,
Please add this bit of CSS code instead
.single-post .entry-thumb {
max-width: 400px;
margin: 0 auto;
}
Since featured images maintain its aspect ratio, if you reduce its width, it will also reduce its height (and vice versa). The margin: 0 auto; is for centering the image.
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.