I reduced the size of the form entry bars to small and my image is aligned right but the form is still pushed down on the page. Any help, please... note: I'm clueless on CSS.
I reduced the size of the form entry bars to small and my image is aligned right but the form is still pushed down on the page. Any help, please... note: I'm clueless on CSS.
It's because of that image height taking up the space there. You can either reduce the width and height of the image, or add this line of css to your theme's stylesheet:
[css]
#gform_wrapper_6 {
float: left;
}
If other pages of your site are using this particular form and no image on the right, you might want to see how that looks. The css i gave you above will correct it on this page though. Ultimately you can always make your image smaller to avoid and css at all.