I'm trying to style the Address Block on my form and having no success at all. Below is what I'm using. I've tried with both px and % using the same code I'm using for styling other parts of the same form. Your help is greatly appreciated.
The form is here: http://tbfaa.devsite103.com/tbfaa/join-tbfaa/
My CSS:
/* Mailing Address1 */
body.custom #field_10_3_1 {
width: 50%;
float: left;
}
#input_10_3_1 {
width: 90%;
}
/* Mailing Address2 */
body.custom #field_10_3_2 {
width: 50%;
float: left;
}
#input_10_3_2 {
width: 90%;
}
/* Mailing City */
body.custom #field_10_3_3 {
width: 60%;
float: left;
}
#input_10_3_3 {
width: 90%;
}
/* Mailing State */
body.custom #field_10_3_4 {
width: 20%;
float: left;
}
#input_10_3_4 {
width: 90%;
}
/* Mailing Zip */
body.custom #field_10_3_5 {
width: 20%;
float: left;
}
#input_10_3_5{
width: 90%;
}