Okay
  Public Ticket #2856142
Colour of Button
Closed

Comments

  •  2
    Tom Wright started the conversation

    Hi

    On some pages, I can change the colour of content to either Light or dark. I assume this is a theme option. However, I created a new page and can't change the colour of a button. I can change the text colours but am unable to change the colour of the outline of the button or the hover fill. Could you please show me when to do this or insert the correct code to do so?

    Thanks

  •  1,823
    Support replied

    The colors of the outline button can be customized with the following CSS:

    .clapat-button.outline-button:hover, .clapat-button.outline-button:active, .clapat-button.outline-button:focus {
        border: #000 2px solid;
        color: #fff;
        background-color: #000;
    }

    .clapat-button.outline-button {
        color: #000;
        background-color: transparent;
        border: #000 2px solid;
    }

    you need to change the hex color and the code to customizer -> additional CSS


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  2
    Tom Wright replied

    Worked a treat - thanks