How can I change the width of table column in a view?

Comments

permafix’s picture

Component: Code » Miscellaneous
shadcn’s picture

This should be done in CSS. Find the view class and use the following code :

.view-name table td.view-field-name {
    width : 100px;
}

Replace .view-name and .view-field-name by your view classes.