Accordion Addon - Question | JoomShaper

Accordion Addon

F

fairpak

SP Page Builder 1 year ago

Hello ! ist there a workaround to have different colors for each headers? for exemple fisrst line red, second, blue,... At this time I'm working on localhost Thanks in advance.

0
3 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #158993

Hi

Thanks for contacting us. No sorry there is no default option to do that. But you can use custom CSS on that. You can use this CSS in your custom.css file

#sppb-addon-1717756920258 .sppb-panel-custom .sppb-panel-heading::nth-child(0) {
  background: yellow !important;
}
#sppb-addon-1717756920258 .sppb-panel-custom .sppb-panel-heading::nth-child(1) {
  background: #0345bf !important;
}

#sppb-addon-1717756920258 .sppb-panel-custom .sppb-panel-heading::nth-child(2) {
  background: #dc3545 !important;
}

If it does not work then please knock me here when your site will be online. I will help you then.

-Regards.

0
F
fairpak
Accepted Answer
1 year ago #159000

Thank you ! How do I declare this in the addon settings ?

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #159077

You can use this CSS in your custom.css file.

0