Hello Carel,
There is no option for that by default, so I suggest you please add this custom element CSS to the Accordion —>customize —>Element CSS.
To add the custom addition and subtraction icon
$el .x-acc-header .x-acc-header-indicator .x-icon:before{
content: "\2b";
font-family: "FontAwesomeLight" !important;
}
$el .x-acc-header.x-active .x-acc-header-indicator .x-icon:before{
content: "\f068";
font-family: "FontAwesomeLight" !important;
}
To add the background color to the icon.
$el .x-acc-header span.x-acc-header-indicator{
transform: translate3d(0, 0, 0) rotate(0deg)!important;
background-color:#000000!important;
border-radius: 50%;
}
$el .x-acc-header.x-active span.x-acc-header-indicator{
transform: translate3d(0, 0, 0) rotate(0deg)!important;
background-color:#ffffff !important;
border-radius: 50%;
}
The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.
Hope it helps.
Thanks