Hello on the front page of my site you see that I have an email form created by gravity forms. It will not align in the centre of the page. How can I make it be centred horizontally on the page? Thanks
Hi @mattbeeps,
Thank you for writing in, I see that you added that custom CSS below to try to center the form.
@media only screen and (min-width: 641px) {
body .gform_wrapper {
max-width: 50%;
margin: 0 auto;
}
}
Please update that to this:
@media only screen and (min-width: 641px) {
body .gform_wrapper {
max-width: 500px;
margin: 0 auto;
}
}
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.