Okay
  Public Ticket #393852
Link colour
Closed

Comments

  • Antje started the conversation

    Hi,

    I want to change the link colour of all links on the website into a dark grey with a hover in lila. But I want the option "extra colour #1" to stay in that lila-tone.

    I can't find the options in the CSS or the general settings. Could you help me with that?
    Thank you very much

  •  8,849
    Tahir replied

    Hey ,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    #footer-outer a:hover, body a:hover {
        color: #4C4C4C !important;
    }

    Thanks



    ThemeNectar Support Team 

  • Antje replied

    Hello,

    this ist not exactly what I meant. The links are still lila. I want them to be grey and have a lila hover-colour.

    Now they are lila and have a grey hover-color.

    Thank you!

  •  8,849
    Tahir replied

    Hey,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    body a {
        color: #4C4C4C !important;
    }
    #footer-outer a:hover, body a:hover {
        color: #861389 !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Antje replied

    Thank you, that worked better but still isn't optimal.

    The colour of the font in the buttons now is also grey, that should stay white. Is that somehow possible?

  •  8,849
    Tahir replied

    Hey,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    .nectar-button span {
        color: #fff !important;
    }

    Thanks



    ThemeNectar Support Team 

  • Antje replied

    Thank you, that worked!