• Resolved Manollo

    (@manollo)


    Hello,

    i need a solution to widen the User table in my wp-dashboard. i have now 22 columns an it looks horrible. Here a screenshot of my user table (image: Image ) . One solution to change the table is a width of 3000px or auto width (firebug test looks perfect: Image) but i can’t edit the original wp css files because i will update my worpress. i need a solution in your plugin and horizontal scrolling is ok. Maybe a css change in my theme functions.php?!

    Thanks

    https://wordpress.org/plugins/codepress-admin-columns/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tobias Schutter

    (@tschutter)

    Hi Manollo, here is a quick solution to put in your theme’s functions.php.

    function my_wider_table() { ?>
    	<style type="text/css">
    	#posts-filter table.fixed { table-layout: auto; }
    	#posts-filter table.wp-list-table {
    		min-width: 3000px;
    		overflow-x: scroll;
    	}
    	</style>
    	<?php
    }
    add_action( 'admin_head', 'my_wider_table' );

    You can change the min-width to whatever value you like.

    Thread Starter Manollo

    (@manollo)

    Hi,

    thank you but doesnt work. in firebug i must only disable the table-layout: fixed, then it look perfect, here a screenshot image.

    Manollo

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Table Size to small’ is closed to new replies.