Hi ntownx5,
According to your description, you want to adjust the width of the columns.
I don’t think it’s possible to adjust the column header width. We adjust the actual column width in general using Jquery/CSS.
Please refer to the steps below:
1.Create a .txt file, then copy and paste the code below.
2.Upload the file to SharePoint library and copy the path url to the file.
3.Navigate to the list, click Edit Page under settings icon beside your account.
4.Add a web part > Categories: Media and Content > Parts: Content Editor
5.Edit content editor web part, type the url in step 2 into Content Link, click OK.
6.Under Page tab, click Stop Editing.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("TH.ms-vh2:contains('Title')").css("width", "300px"); //I suppose you would test on Title column with 300px. If you would like to modify another column, replace “Title” with words in column name.
});
</script>
Please refer to the link:
http://www.emmielewis.com/changesplistcolumnwidth/
Best Regards,
CY
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
tnmff@microsoft.com.
