This topic is locked

Search results color change

10/14/2019 11:13:07 AM
PHPRunner General questions
S
steveng author

Hello All..
I'm using PHP runner 10.2 (build 33576) and earlier this year I changed the Custom CSS for the search on the list page so the search results would be Blue. I just noticed the search results are now

returned in Red, no matter what color is indicated. Here is the custom CSS for the search button:

/* Put your custom CSS code here */
:host {

color: blue;

}


Any thoughts?

Sergey Kornilov admin 10/14/2019

What exactly do you need to change? "custom CSS for the search button" will change the font color of the search button and it doesn't have anything to do with the search results.

S
steveng author 10/14/2019



What exactly do you need to change? "custom CSS for the search button" will change the font color of the search button and it doesn't have anything to do with the search results.


I'm trying to change the text color of the search results.

S
steveng author 10/19/2019



I'm trying to change the text color of the search results.


?

jadachDevClub member 10/19/2019

Add custom CSS

.r-search-highlight {

color: blue;

font-weight: bold;

}
S
steveng author 10/20/2019



Add custom CSS

.r-search-highlight {

color: blue;

font-weight: bold;

}



Thank you, Jerry! This works. My original custom CSS stopped working:

.rnr-search-highlight {
color:MediumBlue;
font-weight: bold;
}