SeamlessDocs support offers articles, videos and webinars to help make sure you get the best of the SeamlessDocs platform.
When converting a form you may want to remove the submit button. This is helpful for conversion projects where you have large amounts of forms to bring online but don't have the capacity to set-up workflow.
Your goal is to allow citizens and staff to fill out forms online, print them, and bring them in person or email them.
This can be done with custom css. To add custom css:
1. Go to either your SeamlessDoc or Web Form editor.
2. Select Settings, then choose Advanced from the drop-down menu.
3. Choose the Custom CSS option.
4. Copy the code below and paste it in to the CSS field:
_______________________________________________________
input.action_button.submit.primary {
display: none !important;
}
.tool.icon-print {
box-shadow: 0px 4px 22px #81A7CB;
background-color: #0052B2
}
.icon-print {
background-image: url(https://cdn.prod.website-files.com/5d126fbc1dd5abb6f92a05c9/5d4083b38c52492668825822_print.png);
}
_______________________________________________________
The above code will remove the submit button and highlight the print button.