Forum Discussion
Adding a description to the sharepoint list
- May 30, 2023
SebastianSzyroki You can use SharePoint JSON form formatting: Configure layout > Header option to add text on top of list form.
Example:
{ "elmType": "div", "attributes": { "class": "ms-fontColor-themePrimary" }, "txtContent": "This is a test sample list description on list form" }
Output:
You can adjust the JSON and CSS styling as per your requirements.
Documentation: Configure the list form - custom header - follow steps given here to add JSON to list form
Check few form JSON samples available here for JSON styling inspiration: Form Formatting samples for SharePoint and Microsoft Lists
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
SebastianSzyroki You can use SharePoint JSON form formatting: Configure layout > Header option to add text on top of list form.
Example:
{
"elmType": "div",
"attributes": {
"class": "ms-fontColor-themePrimary"
},
"txtContent": "This is a test sample list description on list form"
}
Output:
You can adjust the JSON and CSS styling as per your requirements.
Documentation: Configure the list form - custom header - follow steps given here to add JSON to list form
Check few form JSON samples available here for JSON styling inspiration: Form Formatting samples for SharePoint and Microsoft Lists
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.