Yesterday, if you have noticed, my blog was down for few hours. This was because I had problems with my WordPress theme with sidebars getting messed up and found it hard to fix it up. I finally managed to debug this issue and found out it was all due to image over-sizing in my latest post. I googled a lot to find a fix for auto resizing images in wordpress, but most of them were either blog theme specific or were controlling the image size before image upload.

Then I found out a quick and easy way to rezise images with CSS by keeping your image’s aspect ratio. This is very quick you can use it in less than 5 minutes, lets proceed!

Lets say you want to show large images on your web page with maximum 200 pixels width, blog or forums just create the following css class into your styling css file:

.resize {
width: 200px;
height : auto;
}

.resize {
width: auto;
height : 300px;
}

Second class will resize the images by keeping height as 300 pixels. You can use the following classes in <IMG> tags like:

<img src="http://mywebsite.com/myphoto.jpg"  class="resize" alt="my photo">

The above solution is always better than putting width and height attributes into the <IMG> tag. Hope it works out for you too

Free subscription: Subscribe to RSS feed or get daily tips in your email
You must click confirmation link sent in email. If you don't see the email, check the spam folder

Around the Web:

Raju Raju is the owner and editor-in-chief of TechPP. A proud geek and an Internet freak, who is also a social networking enthusiast. You can follow him on Twitter @rajupp

View Comments so far | Have Your Say!

  1. OMG. and here i was, manually as in painstakingly and manually placing width and height attributes on almost ALL of my images just to optimize them.

    fantastic tip! dugg it, bookmarked it, love it! ^_^

    techniqueal t.s last blog post..ShowOffRankings: Blog Widget To Show Blog Rankings

  2. Thanks a lot buddy :)

  3. the only problem with this is if the image is 2Mb then the whole thing will be downloaded and then bowser-side resized. so it’s useful to an extent of sane usage ;)

    stratosgs last blog post..Search comments with “Search Reloaded”

  4. wow! obviously i didnt know this Stratos. I have been using this for the past 3 months without a problem, must be within that sane usage range then !

  5. WHERE EXACTLY DO I PUT THIS IN MY CSS?

    • @310,
      Inside your content body, there will be”img” tag. Under that you need to have “resize” defined.

  6. Gareth

    Im having abit of trouble… when I put the code into the CSS file and the ‘class=”resize”‘ in the html tag, it only seems to resize the images height wise to a certain pixel but not width wise, its as if its almost one or the other, which defeats the object of the code.

    I want code to make individual images load into a 650px x 500px div, resizing images accordingly depending on their dimensions. Am I looking in completely the wrong place?

  7. bimbolera

    this helped me but in a separate website. i have a problem regarding with plugins (for banner) in wordpress, different banners has its own ups and downs, i have found a new plugin and its great but the catch is, it doesn’t have the automatic resize feature. i do hope i can fix this bug!

  8. Thank you very much for the code. I worked a lot of work. I thing is a lot of time searching.

    I’ve done in this way. Makes bigger picture smaller. The size of the value that you have a small picture of picture does not grow.

    .postarea img {
    max-width: 100px;
    height: auto;
    width: expression(this.width > 100 ? 100: true);
    }

    The postarea, writing which contains the name of the div code.

Trackbacks/Pingbacks

blog comments powered by Disqus
Copyright 2010 Technically Personal! 
Blog Design Studio