Thursday 18 April 2013

Change the Default Text Selection Color with CSS in Blogger


  1. Go to Blogger >> Template >> Edit HTML >> Proceed.
  2. In the template, search for ]]></b:skin>
tag and above it paste the following coding.




::-moz-selection {
background-color: #ffb7b7;
color: #fff;
}
::selection {
background-color: #ffb7b7;
color: #fff;
}


NoteReplace #ffb7b7 with your own selected colour according to background and save the template.

No comments:

Post a Comment