I'm having trouble with my website's navigation styling getting messed up by the jQuery accordion. The unordered list inside the .accordion div is overflowing and losing its CSS styling. I've tried adding clearStyle true and autoHeight false to no effect. Any suggestions? Here's the fiddle for reference: http://jsfiddle.net/rAUg3/2/
Below is the jQuery code I have so far:
$(function () {
$(".accordion").accordion({
active: false,
clearStyle: true,
autoHeight: false,
collapsible: true
});
});
Appreciate any assistance you can provide! Thanks in advance!