Column Width

You can adjust the CSS file to allow the columns to be wider.

To make this change, follow these steps:

1. Download the free Code Snippets plugin https://wordpress.org/plugins/code-snippets/
2. Create a new Snippet with the following code:

add_action( 'admin_head', 'pw_bulk_edit_custom_column_width' );
function pw_bulk_edit_custom_column_width() {
    ?>
    <style>
        .pwbe-results-table-td {
            max-width: 900px !important;
        }
    </style>
    <?php
}

Adjust the 900px to suit your needs. The default value is 300px and if you want no limit, change the “900px” to “initial”.

Skip to content