- 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-18-2019 11:40 PM
write below code in the css
when where you will use table tag text will be shown in black
table,th{
color: black;
}
Try it and let me know
Regards
Ravindra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2019 11:56 PM
Hi Ravindra
thank you for the quick answer. Unfortunately, does not work. the heading text is still blue.
BR,
Raphael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:17 AM
Hi
Can you share the css and html code ?
Regards
Ravindra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2019 12:25 AM