MyBB Community Forums

Full Version: change this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: IABCU4c.png]

Hello, i want to change selection color. Now is blue but i want to change in: Orange

how can I do ?
i dont understand nothing, i use mybb 1.8.6

In this forum http://community.mybb.com/ selection is orange, cand you make me a tutorial to change?

http://i.imgur.com/nE576pP.png
as suggested, you can add below code at the bottom of your theme's global.css and check if it helps
::-moz-selection {
  background: orange;
}

::selection {
  background: orange; 
} 
remember to hard refresh your browser (eg. press CTRL + F5) on your forum after saving changes to global.css
thx <3