How do I edit the custom CSS from a tab component

Hey,
How can I change the default settings of the tabs ?? I want different colours of the text etc…
image

Hi @slimpens -

You will need to use custom CSS in the page that the tabs are in. An example of the CSS I’ve used is below. You can synthesize the example for your own needs.

.nav-tabs>li> a {
    background-color:#4160a0;
    color:#fff;
}
.nav-tabs {
    border-bottom: 1px solid #4160a0;
}

@SafetyUniversity

Thanks Adam !! :+1:t2: