PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Fix fields panels so they're always visible when editing long forms

  1. A big UI improvement for me would be to fix the Standard / Advanced / Post / Pricing field panels to the right side of the screen so they're always visible/accessible when working on a long form. As-is, I do a lot of scrolling down then back up to add/edit fields; if those panels could be position: fixed instead of just at the top of whatever form I'm working on it would be a huge help.

    This is a function I've added to my theme to make that happen, but it'd be great if it were an option or just the default for the plugin:

    // THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
    function gravity_panels() {
       echo '<style type="text/css">
               #add_fields {
       				position:fixed;
       				right:30px;
    			}
             </style>';
    }
    if (isset($_GET['page']) && $_GET['page'] == 'gf_edit_forms') {
        // do all of your add_action() hooks here
        add_action('admin_head', 'gravity_panels');
    }
    Posted 11 years ago on Wednesday May 29, 2013 | Permalink
  2. David Peralty

    Thank you for your submission. I'll make sure the team sees it.

    Posted 11 years ago on Wednesday May 29, 2013 | Permalink
  3. Thank you Michelle that is excellent and very handy. Vote 1 from me.

    Posted 11 years ago on Tuesday June 25, 2013 | Permalink

This topic has been resolved and has been closed to new replies.