|
you can insert the following in the CSS (after <style> tag)
blockquote img {max-width:XXXpx;}
Replace XXX with a number of your choice (smaller than your post width, generally 500, 400 or 250).
OR you can find the CSS tag for the post (I usually ID my post div layers “main” or “entry”) and insert the following in the CSS:
overflow:hidden;
But for this one, you need to make sure the CSS tag for the post actually has the width property in it. So example:
#main {
width:400px;
position:absolute;
left:200px;top:50px;
overflow:hidden;
}
Hopefully, that was clear. It would be easier if you told me in specific which theme so I can edit it for your or something.