SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,098 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want to change the font size for individual columns in a SharePoint list.
You could use JSON to change the font size for individual column.
Click the column -> Column settings -> Format the column -> Use following codes.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "@currentField",
"style": {
"font-size": "13pt"
}
}
Result:
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.