In this guide, we will explain how to hide the edit button in the draft and sent entries.
- Click the “New Form”.
- Drag and Drop one HTML and two Text fields and rename the text fields.
- Click the pencil icon on the HTML field and paste the below code.
HTML Code:
<style>
.sent_entry .form_nav_container .edit {
display: none;
}
.draft_entry .form_nav_container .edit {
display: none;
}
</style>
- Click the Check button and then click “Save & Close” to save the form.
- Try the form.
- The edit button in the draft and sent entries will be hidden.
Additionally, please use this CSS to hide the “Clone” button:
<style>
.sent_entry .form_nav_container .clone {
display: none;
}
.draft_entry .form_nav_container .clone {
display: none;
}
</style>
For any questions, please contact us - [email protected] or the Formyoula in-app chat 🙂