Now in your stylsheet enter your class as .SomeClassName .DNN_Documents .[FieldName]Header where [FieldName] is the name of the column you want to format (i.e. Title, Owner, Category, etc.
I tried implementing the custom css styles on the various columns found in the documents module and most of it worked to my expectations, but few of the columns didnt reflect the changes applied to the css class.
The columns in question are Modified Date, Created By, Created Date and Modified Date.
For the other columns which apparently reflects the changes, given below is the css code
.underline .DNN_Documents .TitleHeader, .DescriptionHeader, .Created DateHeader, .DownloadHeader, .OwnerHeader, .CategoryHeader, .SizeHeader, .Modified ByHeader, .ClicksHeader, .Modified DateHeader, .Created ByHeader
{
font-family: tahoma;
font-size: 11px;
font-weight: normal;
font-style: normal;
color: #003366;
padding: 3px;
border-bottom-style: solid;
border-bottom-width: 2px;
border-bottom-color: #E3EDF3;
}
Should there be a space between the fields (eg: Modified DateHeader) or should it be an underscore.
Thanking you for your time,