Hey, I've spent the last 3 hours looking for this and with no luck What I want to do is rescale every image posted within the Wordpress article to be resized (both scaled up/down) to a specific dimension? Either a plugin/CSS Div tag can do this, I just don't know how I need a plugin/script/code whatever, that will work with Wordpress. I've tried heaps of the plugins but they are resize the "larger" images and scale them down, I want that AND smaller images to be rescaled to that specific dimensions. Thanks for any help! m3rc
You don't need a plugin to do that, this is handled by WordPress's text editor. Just click on the image, drag it form the corner and scale it. Very easy.
Huh? Copied post? What are you talking about?? I've got about 3 images on each posts, and about 56 posts. I just didn't want to manually do it one by one - seems like a mindless tasks, that's why I was looking for a plugin. AppleIphone, your words insult me. I would never copy off someone's work
As I think to rescale smallers images is not possible yet, I have not seen this before, but scaling an image to smaller is not a big deal just go to settings>>miscellaneous there u will find different sizes. When u upload ur image then it will as u to choose one out of thumbnail or medium size. Just try it u will be fine.
Hmm..never mind guys I've decided to leave it like that, resizing 100+ images on EXTREMELY SLOW internet, is rather frustrating. Thanks for everyones input, appreciate it regards m3rc
Bango is on the right track. You can set a default size for all images in your blog via your theme files.
Yeah that's what I was looking for, if you could shoot me the code or tell me what to do, that be great
css if want to apply it to every image in ALL your posts add something like: entry.img { max-width: 500px; } This will set all images within entry to a maximum width of 500 px.
Thank you, it seem work for me ^^ but i dont know how to auto align center for all images? Can you help me
For centering, you can try also adding the following to your img css margin-left: auto; margin-right: auto; display:block; Code (markup):