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
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.
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.
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; }