Add in this CSS to remove column header labels from SharePoint Webparts (tested in SharePoint 2016)
<style type="text/css">
.ms-viewheadertr { display:none; }
</style>
To hide specific WebPart's column headers
#WebPartWPQ6 .ms-viewheadertr
{
display: none;
}
.... where replace
WebPartWPQn
with your web part ID.Source: https://sharepoint.stackexchange.com/questions/85735/how-can-i-get-rid-of-the-columns-header-when-the-style-boxed-was-selected
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.