The width of Title is too short and the display is bad.
2
If you look at the top right corner, you should see a button called "Screen Options". Click off some of the columns, you should have more space to read the Titles of your posts.
I used Admin CSS MU plugin which lets to add custom CSS to the admin theme. Then I added the following CSS code and it works like a charm.
.table-view-list .column-primary { width: 12em; }
If you wish, you can customize the width for each page separately by adding the page’s class name after the table-view-list class:
table-view-list
.table-view-list.post .column-primary { width: 12em; }
Hope it helps 🙂
Click here to cancel reply.
2
Answers
If you look at the top right corner, you should see a button called "Screen Options". Click off some of the columns, you should have more space to read the Titles of your posts.
I used Admin CSS MU plugin which lets to add custom CSS to the admin theme. Then I added the following CSS code and it works like a charm.
If you wish, you can customize the width for each page separately by adding the page’s class name after the
table-view-list
class:Hope it helps 🙂