Appointment Form Text

Discussion in 'Appointway WordPress Theme' started by ja1nsa, Jun 4, 2013.

  1. ja1nsa

    ja1nsa Member

    Joined:
    Jun 3, 2013
    Messages:
    57
    Likes Received:
    0
    I am using the silver theme background, however the text in the appointment plug is difficult to see. Where is the CSS to amend this? Can I amend it myself?

    John
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .appointment_wrapper .appointment_form_wrapper input[type="text"], .appointment_wrapper .appointment_form_wrapper input[type="email"]{
    color:red;
    }
    .appointment_form_wrapper .select_item select.inktext {
    color:red;
    }
     
    .appointment_wrapper .appointment_form_wrapper #aptmessage{
    color:red;
    }
    Inplace of "red" put your color code.
     
  3. ja1nsa

    ja1nsa Member

    Joined:
    Jun 3, 2013
    Messages:
    57
    Likes Received:
    0
    Perfect - almost - the text in the field boxes (pre filled) is still very pale. The above has changed the labels fine. Any way to change the pre-filled text? website is www.011-electrician.co.za in case you want to see what I mean. Labels are Orange, text in fields is grey - similar to theme background hence reading issue.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    ::-webkit-input-placeholder {
      color: red;
    }
     
    :-moz-placeholder { /* Firefox 18- */
      color: red; 
    }
     
    ::-moz-placeholder {  /* Firefox 19+ */
      color: red; 
    }
     
    :-ms-input-placeholder { 
      color: red; 
    }
     

Share This Page