When you select text in browser, most often background behind text being selected changes color to blue. How to change this color to another?
Take a look at this article...
http://css-tricks.com/490-overriding-the-default-text-selection-color-with-css/
... so something like this:
p.moz::-moz-selection {
background:#cc0000;
color:#fff;
}
p.webkit::-webkit-selection {
background:#cc0000;
color:#fff;
}
p.normal::selection {
background:#cc0000;
color:#fff;
}
I hope this helps.
Hristo