Click to See Complete Forum and Search --> : Java Menu


`Anon
04-01-2003, 11:13 AM
Is it possible to make a menu like on this page (http://www.outwar.com/page.php?x=566290) but with java and not rolover images?

havik
04-01-2003, 11:21 AM
You mean the links that have underlines when you rollover them?

This is how I did it, put this within sytle tags or in your style.css file. If this is not it, then let me know because I didn't see any special menu effects on that page.

Havik

A.link:visited {
font : 100 12px Verdana, Tahoma, Arial, sans serif;
text-decoration : none;
color: #878D94;
font-weight : 100;
}

A.link:link {
font : 100 12px Verdana, Tahoma, Arial, sans serif; ;
text-decoration : none;
color: #3B526C;
font-weight : 100;
}

A.link:hover {
font : 700 12px Verdana, Tahoma, Arial, sans serif;
text-decoration : underline;
color: #878D94;
font-weight : 700;
}