From df67c352289db3f8d922d2fe2ad2e5d3041d7b58 Mon Sep 17 00:00:00 2001 From: Dave Gamache Date: Fri, 20 May 2011 15:30:44 -0700 Subject: [PATCH] removed the img width 100% declaration. Breaks some plugins and techniques, but commented why it was removed and how the same effect of scaling images can be achieved by individually calling those properties on images --- stylesheets/base.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stylesheets/base.css b/stylesheets/base.css index 82214b6..0f4b5c7 100644 --- a/stylesheets/base.css +++ b/stylesheets/base.css @@ -119,9 +119,17 @@ /* #Images ================================================== */ +/* + + This declaration breaks certain lightbox, slider or other plugins. The purpose is to make sure + images don't exceed the width of columns they are put into. Best solution is to individually + call these properties on images that you want to resize with the grid + img { max-width: 100%; height: auto; } + +*/ /* #Buttons