Good Afternoon!
wondering if the Toggle /Accordion mode can be styled according the the following parameters
1 Centered Titles
2. Background color
3. Icon change
AND
4 My accordion mode isn’t working with all boxes remaining open?
Many thanks in advance
Chris
Hi fineart!
Thank you for coming back.
Can you give us a link to this page please? Then we can give you the correct CSS. You can post it here as a private reply.
ad 4) Try to deactivate all plugins and reactivate one by one to check, if there is a plugin conflict.
Cheers!
Günter
Hi!
Can you please try de-activating all active plugins and check if that helps? Did you add any custom JS codes?
Cheers!
Yigit
Hi!
Add this to your custom CSS.
.toggler { text-align: center !important; }
It looks like your already changing the background color in your custom CSS.
.main_color .toggler {
align: centered;
color: #af2323;
font-size: 15px;
background-color: #f2f2f2!important;
}
For the icons use this CSS.
span.toggle_icon > span {
display: none !important;
}
span.toggle_icon {
background: url("URL to your icon image") !important;
}
Cheers!
Elliott
Perfect, thanks Elliot!