Okay
  Public Ticket #2154158
color button contact form
Closed

Comments

  • crispinamf started the conversation

    How can I change the color of the button in the contact form?

    thanks!

  •  675
    Neuron replied

    Hi,

    You can change it easily by adding the following style in Appearance > Customize > Additional CSS.

    .wpcf7 input[type=submit] {
        background-color: your_color !important;     color: your_color !important;
    }

    And for the hover state.

    .wpcf7 input[type=submit]:hover {    
        background-color: your_color !important;
        color: your_color !important;
    }

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • crispinamf replied

    Thanks!

    The color of the button is white. I want to change the color of the font and the border, is it possible?

  •  675
    Neuron replied

    Have you used the selectors? You'll be able to change anything onto it, you can simply specify the border or the font family.

    .wpcf7 input[type=submit] {
        font-family: 'TheFont' !important;
        border: 1px solid #333 !important;
    }

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.