Hi All,
Does anyone know the code to change the contact form colour? You see my text is in purple but the outline is still and other text is grey.
I would like it to be purple 7898FF
Thanks!
Please consider adding a store URL with your inquiry.
You could try adding this code to the bottom of styles.css
#contact_form #contact_name {
color:#7898FF;
border-color:#7898FF;
}
#contact_form #contact_email {
color:#7898FF;
border-color:#7898FF;
}
#contact_form #message {
color:#7898FF;
border-color:#7898FF;
}
#contact_form #contact_name::placeholder, #contact_form #contact_email::placeholder, #contact_form #message::placeholder {
opacity: 100%
}
Result:
Hi Nick,
It almost worked, but missed the text in the new colour…