How to set custom colors to title columns in list page of Service PortalIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } table tr td { padding: 15px; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> The default Service Portal page has an ID list that renders the list view of records from a specific table. That table's field names show as title columns in the list view. This article suggests ways to set a custom color for the title columns. The following image shows the default list page of the incident table in Service Portal. The title columns displayed have an assigned CSS class called th-title that is rendered through the Data Table widget. The Data Table widget is not included in any page, but the Data Table from URL Definition widget on the list page calls the Data Table widget. This means that the CSS styles of the Data Table widget are applied on the list page. You can see the Data Table widget by going to Service Portal > Widgets. Note that under the CSS field, a styling block is already defined for the class th-title. ReleaseAny supported releaseResolutionUse any of the following three methods to change the color of the column titles: 1. Override the CSS in the Data Table widget by adding the CSS to the Data Table from the URL Definition widget. For example: .th-title { color: white !important; } Note: Defining the CSS in the Data Table from URL Definition widget affects every page where this widget is used or called in. 2. Replace the color defined in CSS field in the Data Table widget. For example: .th-title { color: white; } Note: Defining the CSS in the Data Table widget affects every page where this widget is used or called in. 3. Define the CSS at the list page level and override the style done by the widget. For example: .th-title { color: white !important; } Note: Adding the "!important" definition overrides the color attribute for the class if defined somewhere else. Defining the color in the CSS at the page level is page specific. Related LinksFor more information, see Service Portal styles.