I am using the classic tabs element. Can you tell me how I would change the color of the contents background.
Hi There,
To change the background color of the tab content globally, please add this custom CSS under Theme Options > CSS:
.x-tab-content .x-tab-pane {
background-color: #000;
}
If you want to change the background color of specific tab elements only, please use this custom CSS instead:
.my-tab.x-tab-content .x-tab-pane {
background-color: #000;
}
Then add the my-tab class to the class field of your class tab elements:

Hope it helps 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.