Im trying to make a horizontal navigational menu similar to the one this this website near the top http://www.weebls-stuff.com Notice it has words which change colour as the mouse is placed over it and it also has no hyperlink underline on it. Does anyone know how to do this ?
This is a roll over effect, you create two image one in black other in red and put some javascript to bring that result and more over its easy. Using Dreamweaver its a child's play. Check this http://www.smartwebby.com/web_site_design/rollover_images.asp out, might help you out. or google for http://www.google.com/search?hl=en&...cd=1&q=rollover+effect+in+dreamweaver&spell=1 ! Cheers, Dreamchaser
simple mouse over can be achieved by css alone. a, a:hover {text-decoration: none;} Code (markup): will get rid of the underline. a:hover {color: #FFF;} Code (markup): will change the text to white when the cursor is over it.
Hello, geekazoid. You can achieve that effect using CSS. In a separate styles.css file or in the HEAD section using the <STYLE> tag, put this: A.menu { font-weight: bold; text-decoration: none; font-size: 10pt; color: #000000; } A.menu:hover { color: red } Then code the links in the menu like this: <A class="menu" href="...">A menu option</A> When the mouse cursor passes over the link, the link's color will change from black to red.