Simple Collapsible
Getting Started
Change default toggle to collapsed
Customize the toggle icon.
.simple-collapsible-toggle > .simple-collapsible-icon {
font-family: "Glyphicons Halflings";
display: inline-block;
}
.simple-collapsible-toggle > .simple-collapsible-icon:before {
content: "\e113"; /* GlyphIcon chevron down when expanded */
}
.simple-collapsible-toggle.collapsed > .simple-collapsible-icon:before {
content: "\e114"; /* GlyphIcon chevron up when collapsed */
}Last updated
Was this helpful?