Contact Form - Clear Formatting

Discussion in 'Cloriato WordPress Theme' started by spoonboy90, May 21, 2013.

  1. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Rather than using the themes contact form i'm using a fullwidth page and contact form 7.

    I'd like to remove the formatting of the original form for the specific fields... i've tried cutting out the 'contact form' css from the style.css file bit it still appears to be controlling the text and text area fields

    http://www.ashley-surname.org.uk/contact-me/

    any help would be appreciated.

    Regard
    Jamie
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Code given below is responsible for textbox and textarea formation on your contact form.
    Edit this code and paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    textarea {
    width: 250px;
    height: 100px;
    background: #f2f2f2;
    border: 1px solid #d1d1d1;
    padding-left: 5px;
    padding-top: 5px;
    }
    input[type="text"] {
    width: 250px;
    height: 20px;
    background: #f2f2f2;
    border: 1px solid #d1d1d1;
    padding-left: 5px;
    }
     

Share This Page