Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the jQuery Cycle plugin along with the tutorial here: Net Tuts tutorial "building-an-auto-scrolling-slideshow-that-works-with-and-without-javascript"

It all works good if I give my containing <div> a background color, but as soon as I apply a background via url(), my slide navigation which was originally positioned absolutely to the top right gets bumped down below my slides in IE6.

It doesn't matter if I apply the background to the <div> it's currently on, or the one the slideshow actually uses, or the <ul> that contains the slides.

You can witness the problem here: http://ainsworthstudios.com/beeson/example/ looks fine in IE7 and FF, but the nav is bumped down below the slides in IE6.

I think it has something to do with the clear type fix in Cycle, but I'm not certain. Any help would be appreciated!

share|improve this question
You have my sympathies - IE6 is a pain in the ass that should have been put out of our misery long ago. Is IE6 in Quirks Mode or Standards Mode? – ScottSEA Jul 30 '09 at 19:40
I'm not super savvy on quirks mode, but I think it's in Standards mode with this DTD: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> – bccarlso Jul 30 '09 at 19:49

1 Answer

Ended up hacking it up a bit by making an additional <div> positioned directly above the old <div> in the HTML, giving that a background, and positioning both of them on top of each other to simulate the background I was hoping for originally. It's working in IE6, IE7, and FF, so hopefully that's a good enough "solution."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.