PDA

View Full Version : Still having problems with IE 7


LNewman
Nov-08-2008, 11:00 AM
Hello all. I'm wondering if anyone can point out a fix to my issue with my gallery page: http://leonewman.smugmug.com/galleries. It looks just like I want it to in Firefox, but when I open this page in IE 7, the right side of my thumbnails is missing. I read some about expanding boxes, but I'm too simple to know what to do to fix it. Any ideas? Thanks.

jfriend
Nov-08-2008, 11:52 AM
Hello all. I'm wondering if anyone can point out a fix to my issue with my gallery page: http://leonewman.smugmug.com/galleries. It looks just like I want it to in Firefox, but when I open this page in IE 7, the right side of my thumbnails is missing. I read some about expanding boxes, but I'm too simple to know what to do to fix it. Any ideas? Thanks.
It looks to me like it's caused by this line of your CSS:

.miniBox .photo {float:none; width:70px; height:auto; _height:1px;}

If you change it to:

.miniBox .photo {float:none; width:100px; height:auto; _height:1px;}

the problem goes away in IE7.

LNewman
Nov-08-2008, 03:03 PM
It looks to me like it's caused by this line of your CSS:

.miniBox .photo {float:none; width:70px; height:auto; _height:1px;}

If you change it to:

.miniBox .photo {float:none; width:100px; height:auto; _height:1px;}

the problem goes away in IE7.

That fixed it! Thanks a ton.