vote up 0 vote down star

I develop on Mac. I'm having trouble with my #slider div in IE 7/8.

Can you help me with the CSS? The #slider div (from what I can see on browsershots.org) fans out, rather than hiding the overflow...

http://ftp.crashboxcreative.com/ftp/EastsideBaptist/devSite/

Any help is appreciated.

(If this is a bad question, please don't downvote. Just vote to close!)

flag

If this is a bad question then people will downvote it. Don't tell people what to do just so you can save a couple of rep points. (BTW this is a perfectly valid question, but if you think it's a bad question, why are you asking it?) – DisgruntledGoat Nov 7 at 17:56

2 Answers

vote up 1 vote down check

This is a known IE7 bug that kept be busy quite some time a while back.

This starts happening when you introduce position: relative to one of the elements inside of the container. This is fixed by adding position: relative; to the container itself, in your case

#slider {
  ..
  position: relative;
  ..
}

I started developing on a mac as well a year ago, It's a real pain when confronted with IE bugs. It helps if you setup a Remote Desktop Connection to a test PC if you have one and install IE Tester on it (mind though that IE Tester is not 100% the same thing so you should always do a final check on the real thing).

On a side note, Adobe has a really sexy browser screenshot test app at http://labs.adobe.com/technologies/browserlab/

link|flag
Score. That's awesome. – Kevin Brown Nov 7 at 19:51
Be careful with this, though, if you're only relying on browsershots.org. When I add position: relative, the arrows in the slider are positioned wrongly, and the border around it remains stuck to the first image, scrolling along with it. You don't see that in a screenshot. – mercator Nov 7 at 22:10
Ahhh. Any idea how to fix the border? (I fixed the arrows, that was easy) IE is a MAJOR pain... – Kevin Brown Nov 8 at 5:54
vote up 1 vote down

Screenshot

It looks fine for me on IE8

link|flag
Yea! Looks good. IE 7 is the problem, then... – Kevin Brown Nov 7 at 17:51
Honestly I wouldn't rely on browsershots.org for testing. Most of their screenshot factories are broken, I always get pages either half-loaded or not loaded at all. And it doesn't verify that the slider works at all. – DisgruntledGoat Nov 7 at 17:58
Can you check the nav? There should be a jQuery drop-down for each item. – Kevin Brown Nov 7 at 18:05
Ah, good to know, Goat. Thanks! – Kevin Brown Nov 7 at 18:07
Yep, the nav works. – blake Nov 7 at 18:20
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.