Cole Kuryakin wrote:
[...] To see what's going on, please go here:
http://www.x7m.us/_problems/index_problem.htm.
Sure would appreciate any advise on how I can get overflow:hidden to
target just the images on this site.
You can target all images with 'max-width' in the good browsers, and add
an acceptable fix for IE6 through its own bugs.
Add the following...
img {max-width: 100%; height: auto;}
* html #gallery {overflow: hidden; width: 170px;}
* html #gallery img {position: relative; /* overflowing part visible */}
* html #content_main {overflow: hidden;}
* html #content_main img {position: relative;/* overflowing part visible */}
...and then decide whether you want the overflowing part of the images
visible in IE6, or not.
Just delete the '... img {position: relative;}' declarations and the
overflow will be completely hidden.
The layout won't break in IE6 either way.
regards
Georg
--
http://www.gunlaug.no
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************