Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #419009

    What is the best/easiest way to style the tabs on pages?

    Here is my tab page http://37c.838.myftpupload.com/cms-no-develop-team-march-22nd/#tab-id-3
    I would like the tab titles to be different font/color:
    1- change highlighted tab text color/size
    2- change tabs title text color of the non selected tabs
    3- change tab content text color/size
    4- selected tab background color

    #419162

    Hey wnow!

    Please try the following CSS:

    All tabs:

    .tab{
    color:red important!;
    font-size:16px !important;
    background-color:blue !important;
    }

    Active tab:

    .active_tab{
    color:yellow important!;
    font-size:18px !important;
    background-color:black !important;
    }

    Regards,
    Rikard

    #420591
    #420984

    Hey!

    Please try the following instead:

    .js_active .tab{
    color:red important!;
    font-size:16px !important;
    background-color:blue !important;
    }
    
    .js_active .active_tab{
    color:yellow important!;
    font-size:18px !important;
    background-color:black !important;
    }

    Please delete any cache from caching plugins if you should have one active and delete your browser cache before viewing changes.

    Regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.