Okay
  Public Ticket #3218393
Toggle Heading Colour Change
Closed

Comments

  • Michael started the conversation

    I am trying to change the colour of the heading of an untoggled option. Currently the black on the dark background is illegible. 

    Attached files:  sales.png

  • Michael replied

    I have tried editing the page css with:

    .toggle-heading h3 {
        color: #fffff;
    }


    but no success.


  •  8,403
    Tahir replied

    Hey Michael ,

    Thanks for using Salient.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    div[data-style="minimal"] .toggle > .toggle-title a {
        color: #fff !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Michael replied

    Hey Tahir,

    Thanks for your response!

    This resolved the original issue, however the heading now does not change to the accent colour when toggled, nor show any hover effect. For anyone who needs a fix to this, simply remove the !important @ line 2 as shown below.

    div[data-style="minimal"] .toggle > .toggle-title a {
        color: #fff ;
    }


  •  1,644
    Judith replied

    Hello Michael,

    Thanks for pointing this out. it will be helpful for similar cases.

    Thanks.