How can I change the spacing between the form settings and the first field?
link: https://www.sweatmud.com/individual-registration/
How can I change the spacing between the form settings and the first field?
link: https://www.sweatmud.com/individual-registration/
It looks like this could be to do with how your themes sidebar and content area have been constructed and styled, you can solve this by editing the CSS in your themes style.css and adding a float: left rule to the .post class
.post {
padding-bottom: 10px;
float: left;
}