Hi,
Is there a way to change the color styles of tab content? Such as the colors of the open/active tabs, closed/inactive tabs, title text, body text and possibly even the icon colors?
Thanks
You can change the color of the activate tab with
div .main_color .tabcontainer .active_tab {
background-color: #333;
color: #666666;
}
div .main_color .tabcontainer .active_tab .tab_icon {
color: #666666;
}
and the color of the other tabs with
.main_color .tabcontainer .tab {
color: #919191;
background-color: #333;
}
div .main_color .tabcontainer .tab_icon {
color: #666666;
}
Obviously you need to change the color values :)
Amazing help! Thank you!