Problems with jQuery accordion in IE7

stemkoski

New Member
Fix

It sounds like a float issue. The accordion menu uses floats and if your net element is not floated then the accordion is going to go over top of the next element inline. Floating that element should allow the content below the menu to push down. You could also try removing the float from the accordion menu.
 

bcee

New Member
May be way off but I peeked into your code and the Doctype is not correct and IE7 in quirks mode is a pain in the ass to say the least.

You have:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >

Replace with:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 

mikedouglasdev

New Member
I am having the same problem. Were you able to get this fixed?

Hi,

I am running into the same problem anytime I set the background color of on of a container of the accordion. Were you able to get this fixed or figure out a workaround?

Thanks,
Mike
 
Top