PDA

View Full Version : Cross out Banned Users????????


slapjack2fast
04-08-2009, 09:47 PM
Hey guys could anybody tell me how i can get a line through banned users on my forum?
I Seen it in lots of sites but don't really know how to get it

Any help ?:o

Lynne
04-08-2009, 10:04 PM
Usergroup Manager > Edit Banned Usergroup > Username HTML Markup
The first field is the opening tag. The second field is the closing tag. These tags will be inserted around the user's username like this:

[opening tag]username[closing tag]

Some HTML tags you might want to use here include:

<span style="font-weight: bold;">username</span> = username
<span style="font-style: italic;">username</span> = username
<span style="text-decoration: underline;">username</span> = username
<span style="color: red;">username</span> = username
<span style="font: 20px verdana;">username</span> = username

You can also do combinations by using more than one attribute in the style property:

<span style="font: 20px verdana; color: red;">username</span> = username

For a strike, use style="text-decoration: line-through;"

slapjack2fast
04-09-2009, 01:06 PM
Thank you very much Lynne it worked , thanx alot ;)