Forum Discussion
c918768
Mar 09, 2026Copper Contributor
Add a heading or column containing instructions for New Item in SharePoint List
I'm working in a SharePoint List in Modern View. I need to add a heading or a column that contains a set of instructions. I need the instructions to be there when adding a New Item. Everything that A...
virendrak
Mar 11, 2026Steel Contributor
You can add in JSON Formatting in Header:
{
"elmType": "div",
"style": {
"padding": "16px",
"background-color": "#fff4ce",
"border-left": "4px solid #ffb900",
"border-radius": "4px",
"margin-bottom": "12px"
},
"children": [
{
"elmType": "div",
"style": {
"font-size": "18px",
"font-weight": "600",
"margin-bottom": "6px",
"margin-right": "16px"
},
"txtContent": "Important Instructions"
},
{
"elmType": "div",
"txtContent": "• Review all fields carefully\n• Do not enter confidential data\n• Report issues to the admin team"
}
]
}
It will look like this in UI: