AI Search Assistant Record Producer - Change Title Text color to White

Bret Smith
Giga Guru

Where do I change the text color for the display title name "Helpful Recommendations" 

Right now it is Black text on dark blue background.AI Assist Results.png

 

Where do i change the text color of "Helpful Reccomendations"

Helpful Recommendations.png

 

Record producer configuration.png

 

1 ACCEPTED SOLUTION

The Widget in question is ....
Service Portal Widget
AI Search Assist

BretSmith_0-1713980274061.png

 

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;

View solution in original post

7 REPLIES 7

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

 

The Widget in question is ....
Service Portal Widget
AI Search Assist

BretSmith_0-1713980274061.png

 

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;

I have tried editing the Contextual Search - Inline Results and nothing changes

AI Search Results.pngRecord producer configuration.png