Support

Account

Home Forums Bug Reports Drag and drop in gallery field extremely hard to use Reply To: Drag and drop in gallery field extremely hard to use

  • It’s not the appearance of the scroll bar doing it. The containing div has a padding on which is somehow affecting the width of the placeholder div that’s put in place when you start dragging one of the images, honestly I’m not sure why.

    I will mark this topic for the developer to look at when he has time.

    In the meantime, adding this to functions php will fix the issue

    
    
      add_action('admin_head', 'correct_acf_gallery_drag');
      function correct_acf_gallery_drag() {
        ?>
          <style>
            .acf-gallery-attachments {
              padding: 0;
            }
          </style>
        <?php 
      }