Hi,
It appears you placed the Gravity Form inside <pre> </pre>
tags. the large spacing is normal because any white space contained between those tags is rendered, personally I would not recommend using pre tags in this situation I would swap to divs, however if you don't want to do that then you can edit the following style which is in your custom.css file
pre {
background: none repeat scroll 0 0 #f47522;
width: 500px;
}
so it becomes
pre {
background: none repeat scroll 0 0 #f47522;
width: 500px;
white-space: normal;
}
and that will tell the browser to treat the whitespace how it would with any other element.
Regards,
Richard
Posted 11 years ago on Wednesday June 5, 2013 |
Permalink