I\'m using twitter bootstrap to making responsive layout.It works like awesome.
It makes images too responsive. I need some images only need to be fixed width and height
Create a new class and set the min height and min-width equal to the width and height of the image that you don't want to shrink, and add that class to those images.
eg.
/* css */ img.no-resize { min-height: 40px; min-width: 50px; } /* html */