Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3336429
Contact us form
Closed

Comments

  • pinelopi started the conversation

    Hello,

    In the form contact us I want to change the colour of the submit button. How to do it?

    Thanks!

  •  2,486
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .wpcf7 input[type="submit"] {
        color: #fff;
        background: #000;
    }
    .wpcf7 input[type="submit"]:hover {
        color: #fff;
        background: #333;
    }

    Regards,
    PenciDesign.



  • pinelopi replied

    I added and changed the # but it remains the same. Which part of the code needs to be changed?

    Thanks!

  •  2,486
    PenciDesign replied

    Hi,

    Please modify the CSS code like the following below:

    body.page .wpcf7 input[type="submit"] {
        color: #fff;
        background: #000;
    }
    body.page .wpcf7 input[type="submit"]:hover {
        color: #fff;
        background: #333;
    }

    Regards,
    PenciDesign.