Now you can change your blog’s default text highlight color with cute colors of your choice by adding this cool CSS3 declaration — ::selection — to your stylesheet. Here’s how to use it:
::selection {
background: #ffb7b7; /* Safari */
}
::-moz-selection {
background: #ffb7b7; /* Firefox */
}
If you want to change the color of the selected text, just add color: like this…
::selection {
background: #ffb7b7; /* Safari */
color: #ffffff;
}
::-moz-selection {
background: #ffb7b7; /* Firefox */
color: #ffffff;
}
It’s something that most visitors would never see, but it’s a fantastic visual touch for those who would. This trick works on all major browsers except IE. As always, IE is left behind.
How To Change Text Selection or Highlight Color in Blogger
-
Edit your blog’s template and paste the code in the template’s CSS:
- Go to your Blogger dashboard > Design > Edit HTML
- In the template HTML, find the CSS for the body element.
It looks something like this: (it starts withbody {)body { background:$bgcolor; margin:0; color:$textcolor; font:x-small Georgia Serif; text-align: center; } - Paste the code just before the
body {,
so that it would look something like this:::selection { background: #ffb7b7; /* Safari */ color: #ffffff; } ::-moz-selection { background: #ffb7b7; /* Firefox */ color: #ffffff; } body { background:$bgcolor; margin:0; color:$textcolor; font:x-small Georgia Serif; text-align: center; }
That’s it.
If you need help in adding the code to your Blogger or WordPress blog, just leave a comment below.
(src: thanks to css-tricks)







Heyy , can I know where I gonna put that code for blogger ?
The post has just been updated. The steps on how to add the code to Blogger is now included. Check it out.
I managed to change my default text selection color. However, once texts skip a line, (for a new paragraph for example) it goes back to it’s original (blue) color. How do I solve this? It contradicts with the color of my text selection color so it becomes ugly.
Where can i get this code for tumblr?
Thanks that was easy! no jQuery needed!