Tagged: Accordion
Hello. Is there a way to set the background color for only the initially-opened accordion item? When someone expands a different accordion item, the background color would activate for that particular accordion item. This would be similar behavior to how the tabs are working on the same page (private area)
Thank you,
Ryan
Hi Ryan
Please add following code to Quick CSS
.active_tc .toggle_content {
background: red!important;
}
Regards,
Yigit
That worked for the content area. I was looking to target the title area. Thanks!
Hey!
Please change the code to following one
.toggler.activeTitle {
background: orange!important;
}
Regards,
Yigit
Beautiful, thank you!