Forums

[resolved] How can I change the submit button text color? (3 posts)

  1. iselaespana
    Member
    Posted 11 months ago #

    Hi I wanted to change the color of the text on my submit button in my contact form. Where in the css-controls this feature?

    http://iselaespanadesignstudio.com/contact/

    thanks.

  2. stvwlf
    Member
    Posted 11 months ago #

    this, on line 1047, is being overwritten by some more specific CSS.

    input[type="submit"] {
        color: #333333;
    }

    changing it to this should help

    #content input[type="submit"] {
        color: #333333;
    }

    Of course, change the color code to whatever color you want

  3. iselaespana
    Member
    Posted 11 months ago #

    thanks!!

Reply

You must log in to post.

About this Topic