PDA

View Full Version : I Finally Did Something ! Specific User Title Tweek


DieselMinded
08-10-2007, 05:20 AM
I have 3 Admin , And each Ranked as Admin with

Admin? (Alt 0185)
Admin? (Alt 0178)
Admin? (Alt 0179)

Of Course Im the Owner & Establisher (Many Owners Are Not The Establisher)

In the AdminCP Side of the User Profile (User Options Via There Profile) Go To

User Title
<span style="color:#000000;"><img src="test.png"</img> <b> Admin? </b> </span>


With test.png Being an Image on your Root Directory

Configure Custom User Title to : Admin Set HTML Allowed

Attached Is My 3rd Ranked Admin's Display

DM

clark05
08-10-2007, 01:41 PM
Your image tag is wrong. It should be <img src="test.png" />

ZomgStuff
08-11-2007, 12:19 AM
Your image tag is wrong. It should be <img src="test.png" />


Or just <img src="test.png">.

Either works.

nexialys
08-11-2007, 01:41 AM
if you want to be XHTML/HTML strict compliant (what everybody wants) forget about ZomgStuff's advice...

<img src="" /> is the only compliant tag here...

and to make it more compliant, you can do that:

<img src="test.png" /> <span style="font-weight: bold; color: #000;">Admin?</span>

Dismounted
08-12-2007, 11:14 AM
if you want to be XHTML/HTML strict compliant (what everybody wants) forget about ZomgStuff's advice...

<img src="" /> is the only compliant tag here...

and to make it more compliant, you can do that:

<img src="test.png" /> <span style="font-weight: bold; color: #000;">Admin?</span>
If you want to be XHTML/HTML strict compliant (what everybody wants) forget the first part of nexialys' advice... ;)

The correct way to form an image tag is:
<img src="" alt="" />

DieselMinded
08-12-2007, 06:33 PM
Or Else What?

Dismounted
08-13-2007, 06:13 AM
Or else W3C Validation complains. Although I don't really care about having everything "W3C Validated".