On my website I used to have three different background colors for the content box of the tabs showing on this page:
I used the code as given on this thread:
https://kriesi.at/support/topic/tab-section-background-color-for-each-tab/
Like I said, it used to work, but not anymore. Hope you can help me fix this.
Thanks!
Hey,
Thanks for contacting us!
Please edit your element and give it custom CSS class in Advanced > Developer Settings (“my-tabs” in example below) and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling tab
.my-tabs #tab-id-1-content {
background-color: #edc112 !important;
}
.my-tabs #tab-id-2-content {
background-color: silver !important;
}
.my-tabs #tab-id-3-content {
background-color: #c18100 !important;
}
Best regards,
Yigit
Thanks Yigit, That works perfect!