MyBB Community Forums

Full Version: Animated names?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how to make animated names, like on this forum if you scroll down and see the red name that is animated?
http://suprememodz.net/index.php

Thanks for the helpSmile
I believe it's just a sparkly background image and some CSS3 for the text shadow.
Do you know how I can make this?
I have no clue how to make it...

Thank youSmile
you can use css style code similar to {color: #9900CC; text-shadow: 0 0 5px #9900CC;} for span tag element ..
see also this related tutorial : username styles for each theme


Yep, just using Firefox's inspect feature you can see how he does it. This is the background image: http://i752.photobucket.com/albums/xx164...rc599e.gif
The text is given a color of 'red', and he uses the CSS text-shadow property to give it that red glow
text-shadow: 0px 0px 5px rgb(204, 0, 0);