- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 11:35 PM
Where do I change the text color for the display title name "Helpful Recommendations"
Right now it is Black text on dark blue background.
Where do i change the text color of "Helpful Reccomendations"
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 10:46 AM
The Widget in question is ....
Service Portal Widget
AI Search Assist
in the CSS section of the widget scroll down and find the following code:
.aisa-results-title {
font-size: 14px;
color: $text-primary;
font-weight: 600;
}
To change the title text color to white, replace with the following code
.aisa-results-title {
font-size: 14px;
color: #ffffff;
font-weight: 600;
}
you are just changing
color: $text-primary;
to
color: #ffffff;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2024 06:46 AM
and her
.cxs-results-title {
font-size: 14px;
color: white;
font-weight: 600;
}
the color is white but I am not seeing the title in white
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 10:46 AM
The Widget in question is ....
Service Portal Widget
AI Search Assist
in the CSS section of the widget scroll down and find the following code:
.aisa-results-title {
font-size: 14px;
color: $text-primary;
font-weight: 600;
}
To change the title text color to white, replace with the following code
.aisa-results-title {
font-size: 14px;
color: #ffffff;
font-weight: 600;
}
you are just changing
color: $text-primary;
to
color: #ffffff;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2024 06:52 AM
I have tried editing the Contextual Search - Inline Results and nothing changes