Hey, looking for a solution on my autoblogs Im looking for a way to resize every image that's being posted, if it's too large Is there a good plugin that will work?
yeah use image magick it has a convert utility to resize your images upon upload to a preset size and keeps the deminsions as well many vps servers will have it build in by default
Find out the class of the div that blocks in your post content Edit your theme's css file Add something like this (depending on what you found out the class name was) .entry img{ max-width:450px; } Code (markup): and this should get your straightened out. Remember that the .entry part should be whatever class name that your post content sits in.