Colour / color of highlighted search results

Hi all,

is it possible to change the colour used to highlight search results in a browser from the default of green?

TIA,

Craig.

Subject: Colour / color of highlighted search results

I use this code on my document to change all of the font tags

function changeFontsize(fSize) {

var getElement = document.getElementsByTagName(“font”);

for (var i=0; i<getElement.length; i++) {

var eachElement = getElement[i];

eachElement.style.fontSize = fSize;

eachElement.style.color = 'red';

}

}

Then I call the function from body’s onLoad

Subject: Colour / color of highlighted search results

If this is a real necessity and you are willing to pay something for it, take a look at our Midas Rich Text LSX, and specifically at the on-line demo Highlight Search Term.

Subject: I didn’t know that! Nice work Ben ;o)

Subject: Colour / color of highlighted search results

Alas no. This came up in the Gold forum too… green certainly isn’t the best choice for accessibility.

Subject: RE: Colour / color of highlighted search results

Bah!

Cheers Ben!