Okay
  Public Ticket #170265
Changing colors of tabbed section and accordion
Closed

Comments

  • Anders started the conversation

    Hi,

    How does one change all the colors of respectively:

    1. the accordion (closed and open state) and

    2. the tabbed section (selected and not selected)?

  •  1,069
    ThemeNectar replied

    Hey Anders!

    Enter these into the Custom CSS box located in your Salient Options panel: 1.
     
    body .toggle h3 a {
      background-color: #777!important;
    }
    body .toggle.open h3 a {
      background-color: #000!important;
    }
    
    2.
     
    body .tabbed ul li a {
      background-color: #777!important;
    }
    
    body .tabbed > ul li a.active-tab {
      background-color: #000!important;
    }
    
    Cheers!