Have you ever noticed your image appearing way to big on your wordpress Post? There is a simple CSS trick you can apply to your theme. Every blogger like to put images in posts. After all, an image is worth a thousand words, isn’t it?
Put below code to your theme’s style.css
file.
.post img { max-width: 550px; /* Adjust this value according to your content area size*/ height: auto; }
Hope you find this helpful. Explore all WordPress Tips. Most WordPress themes display posts content within a <div> tag. However, if the hack don’t work, make sure you have this tag on your single.php
file.