Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #264520

    How do I change the button and font color of “submit” button in contact form?
    Thank you.

    #264587

    http://kriesi.at/documentation/enfold/custom-css-and-quick-css/

    quick / custom CSS:

    .avia_ajax_form fieldset p .button{
        background-color: #00000;
        border-bottom-color: #000000;
        border-left-color: #000000;
        border-right-color: #000000;
        border-top-color: #000000;
        color: #000000;
    }

    color is the font color

    http://www.w3schools.com/tags/ref_colorpicker.asp

    #264628

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .main_color input[type='submit'] {
    background-color: orange;
    color: black;
    border-color: orange;
    }
    .main_color input[type='submit']:hover {
    background-color: red;
    color: white;
    border-color: red;
    }

    Cheers!
    Yigit

    #264828

    Thank you, your support on here is the best!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing button and font color of "submit" button in contact form’ is closed to new replies.