|
Stevan
You could do this quite simply using CSS and the 'a' tag.
#button a {color: white; background-color: red;}
#button a:hover {color: red; background-color: yellow;}
Then you call them up using the div tag:
<div id="button"><a href="#">blah</a></div>
This should work ok
meerkat
__________________
Ya don't need a weatherman to know
which way the wind blows...
|