Comment on WordPress Hacks by SEO Dave.

WordPress Hacks The Aweber Form styling you’ve used will be either centering the form or giving it padding/margin/border that’s pushing the form across to the right. Also see a float right.

Near the top there’s some code:

#af-form-327749411 .af-body .af-textWrap{width:70%;display:block;float:right;}

Change right to left and it might make a difference

#af-form-327749411 .af-body .af-textWrap{width:70%;display:block;float:left;}

If that doesn’t work look at the padding values, especially padding-left, there’s some 15px padding left which will push some elements 15px to the right.

Aweber does make it’s code very complicated, talk about over the top! When using WordPress you could probably strip out most of the CSS coding associated with the Aweber Form and use the styling from the theme you are using.

David