MyBB Community Forums

Full Version: How to remove this text shadow?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I remove the text shadow as can be seen in the attached screenshot?

Whatever this effect is, it makes the text look blurry and also makes it more difficult to read.
Add at the bottom of theme global.css:
.select2-results,
.select2-no-results,
.select2-container{
    text-shadow:none;
}
Thank you.  Smile

That solved the problem.
I just noticed that there is still a bit of blurry text on the search page. Any idea how to remove the shadow from there as well?
Replace my above posted code in theme global.css with:

.select2-results,
.select2-no-results,
.select2-container,
option{
    text-shadow:none;
}
Thank you, again! That did the trick.