• Resolved brandontan903

    (@brandontan903)


    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

    (@dannyholt)

    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

    (@dannyholt)

    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.