well I have acouple html tricks I could submit, I don't know if they will be helpful to anybody, or if anyone already knows them...
°Hide link url in status bar, replace with own text
--how it works::
Is where you want to link to.
checks to see if the mouse is over the link... if so display a certain text instead of the link in the status bar, in this case it will display home.
changes the color of the link and what the link text will be
°rotate text 90°
rotates the text 90°, what more can I say...
°Hide link url in status bar, replace with own text
Code:
<a href="http://www.wtflash.com/index.html" OnMouseOver="self.status='home'; return true" onmouseout="self.status=''; return
true"><font color="#FFFFFF">link text</font></a>
Code:
<a href="http://www.wtflash.com/index.html"
Code:
OnMouseOver="self.status='home'; return true" onmouseout="self.status=''; return
true">
Code:
<font color="#FFFFFF">link text</font></a>
°rotate text 90°
Code:
<div style="writing-mode:tb-rl;">teh text</div>