Message Text |
Hey there,
On the general settings I've required field 'email' in the suggestlink form and the field isn't changing color as per my css. All other required fields have done so, but no matter what I try, the variable 'email' doesn't.
I just wondered if that field was different compared to others?
If you need to look at it, My Account > Add Property - logged in as admin
Current code:
<input type="text" name="email" size="{STANDARDSIZE}" value="{LINKEMAIL}" /> *required
CSS (class.css)
input.required,
textarea.required {
padding: 6px;
font: 400 12px arial, sans-serif;
background: #94908F;
border:1px solid #5D5956;
}
input.required:focus,
textarea.required:focus{
color: #333;
background:#CCC;
border:1px solid #94908F;
}
|