Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3706
    paigeohliger
    Member

    Hello,

    I would like to change all of the form fields, comment blocks and any other form data background colors.

    I figured out the “comment” window but need them all to change. Is there an easy way to make a global change for all of the form fields? I would like the background color to be

    #fffcef and the hover color to be #fff. Any help would be greatly appreciated.

    Our site: plantricious.com
    The only field that I somewhat figured out: http://plantricious.com/contact-us/

    #3713
    Sakin
    Keymaster

    @paigeohliger:

    /* For Background Color */
    input[type="text"], input[type="password"], textarea {
    background: none #fffcef;
    }
    /* For Hover Color */
    input[type="text"]:hover,
    input[type="email"]:hover,
    input[type="search"]:hover,
    input[type="password"]:hover,
    textarea:hover {
    background-color: #fff;
    }
    /* For Focus Color */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="search"]:focus,
    input[type="password"]:focus,
    textarea:focus {
    background-color: #eee;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Form Fields’ is closed to new replies.