Depends where you have the label and where you have the field.
To manage the label for the field "aics_name" if the label is on the left side of the field you need to use something like this:
div#aiContactSafe_row_aics_name div.aiContactSafe_contact_form_field_label_left { display:block; margin:10px; padding:10px; }And this is for the input tag:
div#aiContactSafe_row_aics_name div.aiContactSafe_contact_form_field_right { display:block; margin:10px; padding:10px; }You need to replace "aics_name" with the name of the field you want to control.
If the input is in front of the label ( this is a parameter of the field ) you need to use "left" instead of "right" and "right" instead of "left".
You can see the tags of a HTML page and the CSS controlling it using Firebug (
getfirebug.com/ ).
You can learn more about CSS here:
w3schools.com/css/