- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2019 11:29 PM
Hi All,
I have created a new service portal page (London instanz) which is showing a table. I use the widget "Data Table from Instance Definition". ( a copy oft that) I want to achive that the heading text is also in color black.
How can achive this? It seems easy via CCS in the widget self, but it doesen't work. I tryed:
text-info {
color: black;
}
and a lot of other variantes......
Also tryed a control via CSS on level page, on level portal e.c.t
Does somebody has any idea?
BR,
Raphael
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 01:20 AM
Try this
add below code to page you want this change
.th-title{
color: black !important;
}
It should work if you add this to widget css as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:28 AM
attach the html code ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:32 AM
copy the code and paste it here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:40 AM
HTML code:
<div>
<div class="alert alert-danger" ng-if="data.invalid_table">
${Table not defined} '{{data.table_label}}'
</div>
<td><font color="#000000">schwarz</font>
<sp-widget ng-if="data.dataTableWidget" widget="data.dataTableWidget"></sp-widget>
</div>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:46 AM
Hi,
you have to make changes in css of the dataTableWidget
Regards
Ravindra