• Lobo WP

    (@lobowp)


    I use your plugin in some of my projects, and its latest update caused a layout break in the WordPress users, displaying all the WordPress user information vertically.

    assets/css/user-list.css

    Currently it is:


    ---------------------------------
    Currently it is:
    ----------------------------------

    /* Column Widths */
    .column-bua_status,
    .column-bua_reason,
    .column-bua_expiry,
    .column-bua_blocked_by {
    width: 14%;
    text-align: center;
    vertical-align: middle;
    }

    ------------------------------------
    Corrected code:
    -----------------------------------


    /* Column Widths */
    .column-bua_status,
    .column-bua_reason,
    .column-bua_expiry,
    .column-bua_blocked_by {
    width: auto;
    text-align: center;
    vertical-align: middle;
    }

    just leave the width on auto

You must be logged in to reply to this topic.