Click to See Complete Forum and Search --> : Newbie - Trouble with Roll Over


ianripping
01-31-2004, 03:56 AM
I have this button code -

<button style="background: #CCCCCC; color: #000000";><span style="font-size: 200%"></span>CY</button>

I want to add some rollover text to the button. I tried <button style="background: #CCCCCC; color: #000000";ALT="reset button"><span style="font-size: 200%"></span>CY</button> but had no luck

fredmv
01-31-2004, 03:58 AM
Welcome to the forums.title="reset button"

ianripping
01-31-2004, 04:03 AM
Where do I put this into my code?

fredmv
01-31-2004, 04:22 AM
Where your alt used to go. Basically just replace the alt attribute with a title attribute.

ianripping
01-31-2004, 04:34 AM
Thats what I did: -

<button style="background: #CCCCCC; color: #000000";title="reset button"><span style="font-size: 200%"></span>CY</button>

but it doesnt work. Button appears but no rollover text

fredmv
01-31-2004, 04:37 AM
<button style="background: #ccc; color: #000;" title="reset button"><span style="font-size: 200%">CY</span></button>

ianripping
01-31-2004, 04:55 AM
excellent, thankyou very much

fredmv
01-31-2004, 05:08 AM
You're very welcome. ;)