Accordion inside accordion height issue
Here is my code over at jfiddle:
I'm using nested headers. My issue is with height. You'll see in sub-header1 and 2. You have to use the up/down scroll to see all the text.
Here's my java script:
- $j=jQuery.noConflict()
- $j(document).ready(function() {
- $j( "#subaccordion, #accordion" ).accordion({
- collapsible: true,
- active: false,
- autoHeight: false,
- clearStyle: true
-
- });
- });
And i use this little snipet of CSS code:
- .ui-accordion .ui-accordion-content{ overflow:visable !important; }
This works totally find on jfiddle. But on my site, it still doesn't work.
What do you think is going on?
Thank you