I see the issue, though can't quite tell yet while it's doing that. My guess though is that some of the default styles you've removed from the CSS of the script might be the cause. For example, I noticed you removed the "float:left" property from the default style:
Code:
.haccordion li{
margin: 0;
padding: 0;
display: block; /*leave as is*/
width: 100%; /*For users with JS disabled: Width of each content*/
height: 200px; /*For users with JS disabled: Height of each content*/
overflow: hidden; /*leave as is*/
float: left; /*leave as is*/
}
Any reason why you removed it, and what happens when you reinstate it?
Bookmarks