Note: This post applies to on-premise/server lists or O365 lists set to “classic” view. This will not work on modern views.
A little style on column header rows goes a long way. For example, just a background color and font adjustment can take your list from:
Before:

to
After:

Here’s how you can apply your own styles to your list(s).
Create the style
We’re simply going to add a CSS file to your “Site Assets” folder (Settings –> Site Contents –> Site Assets). You can do this any of three different ways:
- Download, then drag and drop this file into your Site Assets folder within your browser, or
- Copy and paste the following script into a text file using notepad or a similar simple text editing program and save as “headers.css” (must have the .css extension in file name). Then drag and drop the file into Site Assets.
- Create a new CSS file within SharePoint Designer and save it to Site Assets as headers.css.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| /*Choose your background color*/ | |
| .ms-viewheadertr{ | |
| background:#00426A; | |
| } | |
| /*Choose font style*/ | |
| .ms-vh2-nofilter, .ms-vh2, a.ms-headerSortTitleLink { | |
| font-weight:bold; | |
| color:white; | |
| font-size:1.05em; | |
| } | |
| </style> |
Change the colors and font style as needed and save again.
Add the style to your list(s)
- Navigate to the list where you’re adding the style
- Edit page

- Add a Web Part

- Media and Content –> Content Editor –> Add

- Edit Web Part

- Type “/siteassets/header.css” in the link field

- Expand “Appearance” and set Chrome State to “Minimized” and Chrome Type to “None” then click OK

- Stop editing the page

That’s it!
Want to take it a step further? Make your headers float/stick as you scroll!

- Here’s how to make sticky/floating headers
- Copy the script from this post and paste it at the top of the file you download in the sticky headers tutorial
- Search for “background-color: white;” and replace it with the same background color your used in your styling above (#00426A; in my example)

- Save your changes to the downloaded file and follow the rest of the steps in the other post. Use the content editor you’ve already added in this post, replacing the /SiteAssets/headers.css line (since we added the script to top of the stickyheaders script) with the /SiteAssets/stickyheaders.js script which includes both.
Leave a Reply