If a VA is designing a form in Jotform and you want to decrease the space at the top of the form, please read this article.
Below is the code to put in the advanced designer tool to remove white space at top:
.form-all {
padding-top: 0;
}
To also remove the space between the logo and the form:
.form-all {
box-shadow : none!important;
padding-top : 0;
margin-top : 30px;
}
To remove the whitespace around the form in mobile version:
@media screen and (max-width:480px){ .supernova body { margin: 0 !important; } ul.form-section.page-section { padding: 0 !important; } .supernova { background-color: transparent; } }
留言