• Hello All,

    I’d like to modify the “on-click” style of the send button on my contact form (I’d like it to turn yellow rather than blue), and also it’s appearance once it’s been clicked (after clicking it has a thin blue border – again I’d like this to be yellow).

    https://razorweb.co.uk/contact/

    I’m not sure which selectors to use. Can anybody help?

    Many thanks
    Mandody

Viewing 2 replies - 1 through 2 (of 2 total)
  • Something like this should work:

    .wpcf7-submit:active {
        background-color: yellow;
    }
    .wpcf7-submit:visited {
        background-color: yellow;
    }

    Thanks Josh. I decided not to go with yellow in the end but those selectors worked perfect. Much appreciated ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Modify button styles’ is closed to new replies.