How can I edit the column width in the list  when I use CRUD?

Like, there are 10 columns, how can I change the width of column 2 or column 3? Would someone can help? thanks.

  • No labels

1 Comment

  1. Hi there,

    In Advanced CRUD Userview Menu's second tab, under Custom Header, you can use the following CSS code to customize the width of your columns.

    <style type="text/css">
    th:nth-child(2) {
        width: 200px;
    }
    
    th:nth-child(3) {
        width: 200px;
    }
    </style>

    Hope this helps.

    Thanks.