I have a menu with (e.g. TEXT1 ; TEXT2 ; TEXT3 ; ...).
What i want is to make the text bold when the mouse pointer passes over the text! How can i do this? I use DreamWeaver there are any behavior that makes this easier?
Bold can really screw the look up onMouseover, but here you go...
<style>
a:link, a:visited {text-decoration: none; color: blue;}
a:hover {text-decoration: none; color: red; font-weight: bold;}
</style> Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048
See
thread215-468858
for a detailed discussion and explanation on how to apply styles to different link classes in an HTML document. Includes a working example.
Cheers,
Edward "Cut a hole in the door. Hang a flap. Criminy, why didn't I think of this earlier?!" -- inventor of the cat door
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.