You don’t even need code behind…Just use this code….It basically hides the default button appearance so you can put the text on there. I even added some mouse over events for you. Should get you started.
Goodluck
For some reason yahoo truncates the text..the line that ends with “.clas…” is supposed to say “className”
//ADD BORDERS ON THE MOUSE OVER EVENT AND CHANGE THE CURSOR
function OnMouseOver()
{
document.getElementById(‘spanMain’).className = ‘spanHover’;
}
function OnMouseOut()
{
document.getElementById(‘spanMain’).className = ‘spanNormal’;
}
Comments
Leave a comment Trackback