Styling admin columns

Support MB Admin Columns Styling admin columnsResolved

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #21280
    EricHedvatEricHedvat
    Participant

    On a small screen the admin columns get squashed to 1 or 2 characters wide. The default wordpress columns remain consistent in their width. Is there a way to make admin columns behave in this way? e.g making the table scrollable horizontally so the columns dont need to be squashed.

    thanks

    #21281
    Long NguyenLong Nguyen
    Moderator

    Hi,

    You can use this custom CSS code to make the editing post table scrollable horizontally. See my short screen record https://www.loom.com/share/f500e6f6dd9f4c568fafea49390f624c.

    body form#posts-filter {
        overflow-x: scroll;
        width: 100%;
    }
    
    body table.fixed {
        table-layout: unset;
    }

    This plugin will help you to run the code in the backend https://wordpress.org/plugins/admin-css-mu/.

    #21308
    EricHedvatEricHedvat
    Participant

    That looks great thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.