MyBB Community Forums

Full Version: Text Shadow MyCode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This simple code will allow you to add a shadow to text. Please note this will not work in Internet Explorer 9 and earlier versions.

Regular Expression:
\[shadow=(.*?)\](.*?)\[/shadow\]

Replacement:
<span style="text-shadow: 3px 3px 3px $1;">$2</span>

Usage:
[shadow=#FF0000]Your text here[/shadow]
(You can change #FF0000 to any color you want)

The output will look something like this:
[attachment=31244]

Enjoy.Smile