Re: Newbie need help on mouse over menu
one taht i've used before (i didn't make it just modifed it heaps)
<style>
.menu {
color: white;
font-family: Tahoma;
font-size: 8pt;
font-weight: bold;
border-right: 1px solid white;
text-decoration: none;
background-color: #313031;
padding: 5px;
}
.menu:hover {
background-color: #5A8EC6;
}
.toolbar {
background-color: #313031;
padding: 5px 0px 5px 0px;
}
</style>
<div class=toolbar><a class=menu href="menu1.html" title="Visit Menu Item 1"> Menu Item 1</a><a class=menu href="menu1.html" title="Visit Menu Item 2"> Menu Item 2</a><a class=menu href="menu1.html"> Menu Item 3</a></div>
|