Gravity Flow Submit Button Position

I’m just curious: when updating changes to and entry in a Gravity Flow step, is there any way to move the submit button and comments box to the bottom of the form? It gets cumbersome to have to scroll back up to the top of a long form to submit the changes.

Thanks!

Hi @ld02digital,

The most straight forward way would be to update the block settings of the inbox page you are using to be single column that will put the workflow details / submit button at the bottom of the page.

I have used the following CSS with a couple of sites to make the workflow details box scroll along with the page when it is set in two column mode. Perhaps you can tweak it to work with your theme / page ID.

/* Scroll Fixed Workflow Details Box */
@media (min-width: 881px) {

    .page-id-81637 .post-content {
        overflow: visible;
        
    }

    .page-id-81637 .gravityflow_workflow_detail #post-body {
        zoom: 1;
        
    }
    .page-id-81637 .gravityflow_workflow_detail #post-body:before,
    .page-id-81637 .gravityflow_workflow_detail #post-body:after {
        content: " ";
        display: table;
    }
    .page-id-81637 .gravityflow_workflow_detail #post-body:after {
        clear: both;
    }

    .page-id-81637 .gravityflow_workflow_detail #postbox-container-1 {
        position: sticky;
        top: 0;
    }

    .page-id-81637.admin-bar .gravityflow_workflow_detail #postbox-container-1, 
    {
        top: 52px;
    }

}
/* END Scroll Fixed Workflow Details Box */

Thank you! I don’t have time to work on this today, but hopefully later this week or early next week and then I’ll post an update :slight_smile: