Is there a way to change the color of the DW: Tabs widget?
1 Answers
To change the color of the DW:Tabs widget in the DW Minion. you can log in to Dashboard > Appearance > Editor > open the style.css file then add the following code:
.nav-tabs > .active > a:before {
border-top-color: #...;
}
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
background-color: #...;
}
.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
background-color: #...;
}
Please login or Register to submit your answer