PDA

View Full Version : how to pute a line on banner user name ?


scorpss
12-20-2012, 01:55 PM
hello bros ,

i'd like to know the code to add to create a line on the username banned member .

thanks alot

Stefan118
12-20-2012, 03:19 PM
In the settings of the membergroup "Banned Users" You can add the <u> </u> tags

scorpss
12-20-2012, 03:23 PM
euh nope , doesn't work :( , i want a line on the texte not at the bottom of the texte .. :(

final kaoss
12-20-2012, 08:51 PM
in otherwords you want strikethrough tags. with that knowledge hit up google search.

scorpss
12-20-2012, 09:01 PM
yes exactly but i dont find anything :( (bad on english) ...

Stefan118
12-20-2012, 10:03 PM
That would be the <del> and </del> tags.

(google on strikethrough html)

scorpss
12-20-2012, 10:04 PM
nope , didn't work ..

but i found the good one ^^ , this :

<strike> and </strike>

it work , thanks anyway ;)

Stefan118
12-20-2012, 10:07 PM
<strike> is no longer used in html5.
It should be <del>

But however, if it works for you it is fine :)

metalguy639
12-20-2012, 10:10 PM
nope , didn't work ..

but i found the good one ^^ , this :

<strike> and </strike>

it work , thanks anyway ;)


It is also possible to use CSS in this area. So to make it a strike through the css for the first field would be...

<span style="text-decoration:line-through;">

and the second field would be...

</span>

Using css is a better idea if you also want to use a color with it as well as any other styling for the name of the member.

Lynne
12-21-2012, 04:44 PM
The best thing to do is to use CSS. The strike tag is deprecated, the del tag is it's replacement if you want to use html instead of CSS.