Site in read-only mode

This site is now read-only following the release of MyBB 1.8 and the new mods site.

If you are looking for MyBB 1.8 mods please click here to visit the new mods site.

You can continue to download submissions for MyBB 1.6 and earlier here, however new submissions will only be accepted via the new mods site.

Custom text selection

If you hate defaut text selection and you want something new


This is pretty easy, and can help your forum look a lot.

If you want new text selection style all you need is put this code to your stylesheet:

::selection {
color:white;
background:#4DB8FF;
}
::-moz-selection {
color:white;
background:#4DB8FF;
}

That's one try, here you have more examples:

::selection {
color:white;
text-shadow: 0 1px 1px rgba(0,0,0,0.26);
background:#4DB8FF;
}
::-moz-selection {
color:white;
text-shadow: 0 1px 1px rgba(0,0,0,0.26);
background:#4DB8FF;
}

One without background...

::selection {
color:orange;
text-shadow: 0 1px 1px rgba(0,0,0,0.26);
}
::-moz-selection {
color:orange;
text-shadow: 0 1px 1px rgba(0,0,0,0.26);
}

You can playing around with css for it.