Just to summarise, the issue was that a border is required around the INPUT fields, but if one simply applies
Code:
INPUT{
border: 1px solid #aaaaaa;
}
then every input - textfield, radio andf hidden fields end up with the border. The advice was to identify the individual fields, and I've been playing about with this over the past week or so.
So far, my "INPUT" section of the stylesheet looks like this..
Code:
INPUT#navMainSearch, INPUT#login-password,INPUT#login-email-address,INPUT#firstname,
INPUT#lastname,INPUT#street-address,INPUT#suburb,INPUT#city, INPUT#postcode, SELECT#country,
INPUT#telephone, INPUT#fax,INPUT#dob,INPUT#company, INPUT#email-address,
INPUT#password-new, INPUT#password-confirm,INPUT#contactname, INPUT#productAttributes, .myInputBox {
border: 1px inset #aaa;
}
This list is going to keep growing...surely there's a better/easier way to achieve this? If not, does anyone have a complete list of all Input field names?