Title: Feature request: Structure dragging &amp; background in HTML
Last modified: December 19, 2019

---

# Feature request: Structure dragging & background in HTML

 *  Resolved [brandontan903](https://wordpress.org/support/users/brandontan903/)
 * (@brandontan903)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/feature-request-structure-dragging-background-in-html/)
 * Hi,
 * I frequently create very long page.
 * I need “structure dragging” feature where I can easily drag a specific row to
   different order. Without “structure dragging” feature, it is very tedious.
 * Another feature I need is background in HTML instead in CSS.
 * On very long page with many background image, it slow down the page loading time.
   By putting background in HTML instead of CSS, I can lazyload it and make it faster.
 * Thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Danny](https://wordpress.org/support/users/dannyholt/)
 * (@dannyholt)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/feature-request-structure-dragging-background-in-html/#post-12305664)
 * Hi,
 * You can already drag-and-drop a row to change the order using the Move option
   in the row toolbar. 🙂
 * In regard to adding the row background inline, you can use the filter below.
 *     ```
       add_filter( 'fl_builder_row_attributes', function( $attrs, $row ) {
           if ( 'photo' == $row->settings->bg_type ) {
               $attrs['style'] = sprintf( 'background-image: url(%s)', $row->settings->bg_image_src );
           }
           return $attrs;
       }, 10, 2 );
       ```
   
 *  Plugin Support [Danny](https://wordpress.org/support/users/dannyholt/)
 * (@dannyholt)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/feature-request-structure-dragging-background-in-html/#post-12483875)
 * Marking as resolved due to no further responses. 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Feature request: Structure dragging & background in HTML’ is closed to
new replies.

 * ![](https://ps.w.org/beaver-builder-lite-version/assets/icon-256x256.png?rev=
   2361183)
 * [Beaver Builder Page Builder - Drag and Drop Website Builder](https://wordpress.org/plugins/beaver-builder-lite-version/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/beaver-builder-lite-version/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/beaver-builder-lite-version/)
 * [Active Topics](https://wordpress.org/support/plugin/beaver-builder-lite-version/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/beaver-builder-lite-version/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/beaver-builder-lite-version/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Danny](https://wordpress.org/support/users/dannyholt/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/feature-request-structure-dragging-background-in-html/#post-12483875)
 * Status: resolved