- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 06:31 AM
How to change the font color of the widget from blue to grey in the attached image?
I followed this article but it didnt helped.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2024 02:14 AM
Hi @swapnil15
add below code CSS.
a {
color: #808080;
}
Thanks
dgarad

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 08:51 AM
@swapnil15 You can validate the class from element and then apply the css .
This is what i tried on my PDI, and its working.
.v1e6b5b3adb20320099f93691f0b8f5a8 .main_text a {
color: #939393;
}
Result :
Hope it will help you.
Thanks,
Harsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2024 01:53 AM
@Harsh Vardhan I am not sure what the number below means:
.v1e6b5b3adb20320099f93691f0b8f5a8
How to validate the class from element?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2024 02:14 AM
Hi @swapnil15
add below code CSS.
a {
color: #808080;
}
Thanks
dgarad