Hi Chrisrahe,
Looking at this again, it seems that the problem might be with the div in your side bar. You can remove the css that you mentioned above. Let me explain what’s happening here. In your site’s css, the width and background image/color are applied to all divs in the sidebar. Our plugin uses divs to wrap the elements in the form. So there are a few styles you need to add to the target just the form divs in the sidebar.
First the div that wraps the form needs to be targeted and it’s width needs to be adjusted. Then the form element needs to have a width that’s less than 180px to fit in the sidebar. Add this bit of css to do that.
#sidebar div#mc_signup, #sidebar form#mc_signup_form {
width: 150px;
}
Then you need to remove the background color and padding from div elements in the signup form. Modify the css the MC_Gabe suggested earlier to do that.
#sidebar #mc_signup_form div {
width: 150px;
padding: 0;
background: none;
}
Also your input elements seem to be a little small. If you want to adjust them, this css can do that.
#sidebar #mc_signup input[type=text] {
padding: 10px;
width: 130px;
margin-left: 0;
}
You can add this all in one chunk replacing the css that you added earlier. Let us know if you have any other questions.
Thanks!
-mc_d