To remove the effects of attributes of a fixed width and / or height without actually deleting these attributes, you can set them back to "auto" in your CSS definitions:
img { height: auto !important; width: auto !important; }
I suggest doing this only for img tags where you really need pictures. This can be done by adding an id or class to the img tags or to any surrounding tag.
eg. if your liquid images are in a wrapper div with the class "fluid_pics", you can use:
.fluid_pics img { height: auto !important; width: auto !important; }
Often you only need to set the height in the auto, as the width is already overwritten to be 100% your framework (e.g. Twitter Bootstrap).
source share