Buttons at the top of the form

Confluence User - 10 Jul, 2018

Hello team. A question of aesthetics. Is it possible that the buttons shown on a form associated with a crud (or a process form, in general) are displayed at the top of the form?

forms;buttons

1


11 Jul, 2018
confluenceUser
confluenceUser

Hi

You can use this CSS in a Custom HTML element in a form to relocate the buttons to the top of the form:

<style>
.form-container {
  position: relative;
  padding-top: 55px;
}
div#section-actions {
  position: absolute;
  top: 0;
}
</style>

 

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print