Answered by:
SharePoint Box List View - Make the Title column Bold

Question
-
Hi guys,
I am using SharePoint Online and a custom list with boxed style.
Is it possible to make only the Title column bold ?
Every time I try the below, it becomes bold the whole text.
table.ms-listviewtable > tbody > tr > td:last-child{ font-weight: bold !important; }
thanks,
Mike
- Edited by michaalis Friday, July 19, 2019 1:41 PM
Answers
-
Hi Mike,
Modify like this:
<style type="text/css"> table.ms-listviewtable > tbody > tr > td > table > tbody > tr:first-child{ font-weight: bold !important; } </style>
Thanks
Best Regards
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019.- Proposed as answer by Wendy DZMicrosoft contingent staff, Moderator Tuesday, July 23, 2019 8:03 AM
- Marked as answer by michaalis Wednesday, July 24, 2019 8:29 AM
All replies
-
Yes you can.
Pls follow this blog
https://www.paitgroup.com/blog/json-column-formatting-part-1
https://techcommunity.microsoft.com/t5/SharePoint-Developer/How-to-make-list-title-bold/td-p/202193
Please remember to click Mark as Answer on the answer if it helps you
-
Hi Mike,
Please modify the CSS Code as below for your first column Title:
<style type="text/css"> table.ms-listviewtable > tbody > tr > td:first-child{ font-weight: bold !important; } </style>
Thanks
Best Regards
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019.- Edited by Jerry ZyMicrosoft contingent staff Monday, July 22, 2019 3:03 AM
-
-
Hi Lakshmanan,
Thanks a lot for your reply.
In a standard SharePoint list view in SharePoint Online (Modern view), the bold works smoothly.
However, I am using a custom list with BOXED style (which is only classic view), so JSON formatting does not work at all.
Is there any alternative for a SharePoint List with BOXED style (classic view) ?
-
Hi Mike,
Modify like this:
<style type="text/css"> table.ms-listviewtable > tbody > tr > td > table > tbody > tr:first-child{ font-weight: bold !important; } </style>
Thanks
Best Regards
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019.- Proposed as answer by Wendy DZMicrosoft contingent staff, Moderator Tuesday, July 23, 2019 8:03 AM
- Marked as answer by michaalis Wednesday, July 24, 2019 8:29 AM
-
Hi Mike,
Any updates ?
Thanks
Best Regards
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019. -