I've got a weird one. Well, ok not that weird. I just need a second
pair of eyes on y problem.
I'm attempting to add overflow to the existing client site http://www.createfixate.org
.
I've setup a dev site on my server to work under: http://createfixate.codehooligans.com
Details:
The client wanted to display more than 28 images on the home page from
the various events. So my thought was add some simple overflow CSS and
be done. The dev site looks good in FF3 and Safari or course. But in
IE7 & 6 the image aren't hidden they are all displayed on the page.
The curious thing is I've also added overflow to the news section
(right sidebar). This does seems to work correct under IE. Though I've
not adjusted the position/margin/padding. The container code is pretty
ugly due to the various background images (not my coding).
I've obviously missing something here. Anyone see anything?
Thanks in advance,
Paul
I believe it may be the position: relative value on the thumbnail
images. IE has problems with that when inside a container with
overflow. Try either setting your images to position:static or set
position:relative on the overflow container.
--
Alex Bilstein
abil...@gmail.com
You are the man! That sees to be the fixe I was looking for. Thanks!
P-