1) Is it possible to add a + to the right side of the page break toggle when closed and a - when opened?
2) Is it possible to not have the first page open automatically?
Thank you in advance.
.
eth
eth.pane-sliders .panel h3.pane-toggler:before {
content: "\f068";
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-feature-settings: normal;
font-kerning: auto;
font-language-override: normal;
font-size: inherit;
font-size-adjust: none;
font-stretch: normal;
font-style: normal;
font-synthesis: weight style;
font-variant: normal;
font-weight: normal;
line-height: 1;
text-rendering: auto;
}
.pane-sliders .panel h3.pane-toggler-down:before {
content: "\f067";
}
<script type="text/javascript">(function($) {$(document).ready(function() {
if( $('h3.pane-toggler-down').size() > 0 ) {
$('.pane-down').attr('style','padding-top: 0px; border-top: medium none; padding-bottom: 0px; border-bottom: medium none; overflow: hidden; opacity: 0; height: 0px;').addClass('pane-hide').removeClass('pane-down');
$('h3.pane-toggler-down').addClass('pane-toggler').removeClass(pane-toggler-down);
}
});})(jQuery)</script>
.pane-sliders .panel h3.pane-toggler:before {
content: "\f067 ";
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-feature-settings: normal;
font-kerning: auto;
font-language-override: normal;
font-size: inherit;
font-size-adjust: none;
font-stretch: normal;
font-style: normal;
font-synthesis: weight style;
font-variant: normal;
font-weight: normal;
line-height: 1;
text-rendering: auto;
padding-right: 10px;
float: right;
}
.pane-sliders .panel h3.pane-toggler-down:before {
content: "\f068 ";
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-feature-settings: normal;
font-kerning: auto;
font-language-override: normal;
font-size: inherit;
font-size-adjust: none;
font-stretch: normal;
font-style: normal;
font-synthesis: weight style;
font-variant: normal;
font-weight: normal;
line-height: 1;
text-rendering: auto;
padding-right: 10px;
float: right;
}<script type="text/javascript">(function($) {$(document).ready(function() {
if( $('h3.pane-toggler-down').size() > 0 ) {
$('.pane-down').attr('style','padding-top: 0px; border-top: medium none; padding-bottom: 0px; border-bottom: medium none; overflow: hidden; opacity: 0; height: 0px;').addClass('pane-hide').removeClass('pane-down');
$('h3.pane-toggler-down').addClass('pane-toggler').removeClass('pane-toggler-down');
}
});})(jQuery)</script>
