Okay
  Public Ticket #2446653
Toggle Background Color & Font Size
Closed

Comments

  •  3
    Letter27 started the conversation

    Hi! We'd like to change the background color of the toggle box before it is expanded to be darker and we'd also like to increase the font size of the title on the toggle box itself. Thanks!

  •  8,884
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .toggle h3 a {
        background-color: #5fb0bd !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    Letter27 replied

    Thanks! That worked for the color, but how do we change the font size of the titles?

  •  8,884
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    div[data-style="default"] .toggle h3 a, div[data-style="default"] .toggle h3 {
        font-size: 16px !important;
        line-height: 16px !important;
    }

    Thanks


    ThemeNectar Support Team