Hi,
it can be done with custom CSS (with the help of nth-child pseudo class )
You want to change the background of the actual tab or the tab content area?
I can help you with this custom CSS, but please tell me your site URL and the tab you want to change the background of.
Take care!
Thread Starter
ZaWP
(@zawp)
That would be great, thanks ^^
The tab content area actually. Here you got the URL: https://www.pvpmaniak.com/about-us/
I would like to apply only a background to the tab “interview” and not the other one.
Hi,
I see the problem now… You will have to set the background for every row (and maybe also for every widget) in the Page Builder editor or simply force overwrite the CSS.
You can simply target the general background with the id of the content tab, like so:
.pt-tabs__content #tab-interview {
background: red;
}
And then you can also force overwrite the Page Builder widget style with this code:
.pt-tabs__content #tab-interview .panel-widget-style {
background-color: red !important;
border-color: red !important;
}
Take care!