This is something easily controlled with a little custom CSS.
In your browser (Chrome in this example)
Browse to a blog with an image that is too big, right click on it and choose "Inspect Element"
There will be the css needed to apply to blog images, it is something that ends in img like:
.blogcontent img {
So in additional.css template add code like this:
Code:
.blogcontent img { max-width: 800px !important; }
That will make the max width of any image in a blog 800 pixels wide, change the value to suit your needs.
!important means it should override any other value if this value is set elsewhere in the code.
Note- this is for inline images using the [IMG] tag. You may need a separate line for attached images- follow the same basic instructions.