by ibradley September 8th 2009, 3:32 am
Hello,
With this tutorial you will be able to change the Selection Color of your forum with a simple code that you can change whenever you want and with whatever you want. This code will be added in the CSS and it's really easy to change and make it as you wish.
Before the code:
After the code:
Installation To add the code go to: Admin Panel ► Display ► Pictures and Colors ► Colors ► CSS Stylesheet
- Code:
::selection{ background-color:#XXXXXX !important; /*This is the background color of the selection*/ color:#XXXXXX /*This is the color of the text after the selection*/ } ::-moz-selection{ background-color:#XXXXXX !important; /*This is the background color of the selection*/ color:#XXXXXX /*This is the color of the text after the selection*/ }
Explanations: ::selection : This code is for browsers Google Chrome, Safari and Opera ::-moz-selection : This code is for browser Mozilla Firefox
After you are finished with the changes you want to do simply press and you are done!
|
Last edited by APE on September 17th 2018, 11:52 pm; edited 3 times in total (Reason for editing : Added a few things)