Okay
  Public Ticket #2413048
Link/block quote colours
Closed

Comments

  • Kate started the conversation

    I would like text links to be coloured as my accent colour: #a0314 but the blockquote line to be in extra colour #1: #d6ccc4 

    If I change the order of my colour palette to suit the links, the blockquote becomes the wrong colour, and vice versa. 

    Is there a way to set the colour of links, and the hover state? Or to set the block quote colour?

  •  2,979
    Andrew replied

    Hi Kate,

    Your website is behind coming soon page. Can you allow us to check so that we sent custom css.

    Thanks.

  • Kate replied

    I have removed the coming soon page - thanks

  •  2,979
    Andrew replied

    Hi Kate,

    Try the following custom css in Salient > General settings > CSS/Script related:

    .main-content a {
        color: #d6ccc4;
    }
    .main-content a:hover {
        color: red;
    }
    

    Replace the colors with those of accent colors you set.

    Try the following to change block quote:

    blockquote.wp-block-quote {
        color: green;
    }
    

    Kind regards.

  • Kate replied

    Thanks - that worked brilliantly!