Hi,
thanks for your patience.
I have added some CSS to the Visforms CSS.
Basically it is the default Boostrap CSS code for accordions/collapsables.
As far as I can see this fixes the problem.
I will send you the modified file, so that you can test with it.
Please let me know if this fixes the problem.
Please note, that the default behavior of bootstrap accordions is, that the first panel is expanded by default, when the page is displayed. The other panels are collapsed.
As Visforms uses the default bootstrap accordion HTML, Javascript and CSS, at the moment there is no way to display the first panel collapsed but I will set that as a feature request to my feature reqeust list.
I have added the following CSS code to the media\com_visforms\css\visforms.min.css
Code:
/*Accordions*/
.collapse {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
-moz-transition: height 0.35s ease;
-o-transition: height 0.35s ease;
transition: height 0.35s ease;
}
.collapse.in {
height: auto;
}
.accordion {
margin-bottom: 20px;
}
.accordion-group {
margin-bottom: 2px;
border: 1px solid #e5e5e5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.accordion-heading {
border-bottom: 0;
}
.accordion-heading .accordion-toggle {
display: block;
padding: 8px 15px;
}
.accordion-toggle {
cursor: pointer;
}
.accordion-inner {
padding: 9px 15px;
border-top: 1px solid #e5e5e5;
}
Regards,
Aicha