1
0
-1

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?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      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>

       

        CommentAdd your comment...