does anybody knows the code for the sparkling name + user glow in forum?
thanks!
does anybody knows the code for the sparkling name + user glow in forum?
thanks!
depends what forum software you are using.
Put the sparkles are gifs.
<span class="glow-elite">'.$user.'</span>
.css
bg gif -> http://forum.ragezone.com/images/backround6.gifCode:.glow-elite { color: #FF6C00; font-weight: bold; text-shadow: 2px 0px 11px #FFA05C; background: url('images/backround6.gif') repeat scroll 0% 0% transparent; }
so basically, if your forum soft doesn't support custom usernames by default, all you have to do is find mod, or add css class name to username variable in code which is responsible for displaying usernames base on id or whateva, and eventually switch depending on user-group/post count or anything you wish, however require some php/mysql knowledge, or language your forum is originally coded.
y0.
If you are using VB i don't believe you have to add it to the css. You can change it in the usergroup manager.
vb limits the field length though.. big problem.
You can just change it in IPBoard. <span> style and that's it.
I'll give you a code and you'll figure it out:
Here code which MentaL is using for Administrator:
<span style='color:#FFFFFF; text-shadow: 2px 0px 11px #00aeff ;'><span style='background: transparent url(http://forum.ragezone.com/images/backround16.gif)'>
Yeah that's why I was asking in what .css file I could add a class. Adding style in a <span> tag (any HTML tag for that matter) is bad practice imo. Just like you link a stylesheet in your html instead of doing the entire style in the <head> tags.
I fixed it by going into AdminCP > Styles and Templates > Search in Templates > search for 'additional.css' and just add a class in there. After that go into usergroups, select the group you want to edit and use:
<span class="name of class added in additional.css"> Username </span>
Thanks for the help everyone.![]()