I've added a form to my page and the form is showing up as centred on the page, but I need to have it aligned to the left.
Is there a way I can do this?
http://qublu.ourdemo.org/contact-us
Thanks.
I've added a form to my page and the form is showing up as centred on the page, but I need to have it aligned to the left.
Is there a way I can do this?
http://qublu.ourdemo.org/contact-us
Thanks.
Hi Joe,
Your form isn't actually centered, the following style that I guess is in your theme's custom CSS options panel is adding a wide left margin.
.gform_wrapper {
margin-left: 50px;
}
I am not sure what reason it is there for but you have a few options
#gform_wrapper_1 {
margin-left: 0;
}
Regards,
Richard
Thanks Richard,
You've saved me a headache :)
Joe
You're welcome