skip to Main Content

The width of Title is too short and the display is bad.

Title width too short

2

Answers


  1. 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.

    Login or Signup to reply.
  2. 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.post .column-primary {
        width: 12em;
    }
    

    Hope it helps 🙂

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search