OK, a lot going on here that is incorrect with your styling, do the following, add this to your stylesheet:
[css]
#stylized ul {
margin: 0;
padding: 0;
}
On these declarations, get rid of the margin-left:
[css]
#stylized label {
margin-left: -40px;
padding-bottom: 3px;
}
#stylized input {
border: 1px solid #E7D1AA;
border-radius: 5px 5px 5px 5px;
font-size: 12px;
margin-left: -40px;
padding: 4px 2px;
width: 210px;
}
#stylized textarea {
border: 1px solid #E7D1AA;
border-radius: 5px 5px 5px 5px;
margin-left: -40px;
width: 213px;
}
.gform_wrapper .gform_footer {
margin-left: 40px;
margin-top: 10px;
width: 215px;
}
Posted 13 years ago on Friday November 4, 2011 |
Permalink