Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25273

    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

    #126349

    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 :)

    #126350

    Amazing help! Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Tab Colours’ is closed to new replies.