- 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-12-2024 04:13 AM
Hi
Try to use page specific CSS
Open the page sc_cat_item and paste below CSS
.cxs-results-title {
color: red !important;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 03:35 PM
Let me ask it this way, where is the Text color set for Display name?
Specifically, I want to change the color of 'Helpful Recommendations'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 10:07 PM
Navigate to Service Portal -> Widgets - > Contextual Search - Inline Results
Search below CSS
.cxs-results-title {
font-size: 14px;
color: $text-primary;
font-weight: 600;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2024 06:38 AM
.cxs-results-title-bar {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 6px 12px 6px 12px;
border-bottom: 1px solid #ccc;
background-color: #001970;
}
I know this is the background color of the title bar but when I changed that color code nothing changed