Forum Discussion
Custom field rendering in modern list views
Can I just, please, change the width of the Name field? I have one list in one site that I'm the only user of and the names are extraordinarily large because they are coming from Dynamics CRM. (Dynamics is concatenating the Organization Name with the GUID.) This is making data management quite difficult for me, a super user, with no time to learn JSON.
If it is only for you, then let your Browser make that change.
Install a Browser plugin like Stylish, which always applies the CSS on the loaded page:
table[summary*='Document'] tbody TD[class*='ms-vb-title'] DIV{
background:pink;
max-width:10em;
overflow:hidden;
}
> Get the Table with 'Document' in the name
> goto the TBODY
> get the TD which has the (default) SP Title
> get the DIV
> Apply CSS
Same concept but totally different CSS Selector can be applied to a Modern Page (I don't have one at hand; learn CSS)