Forum Moderators: not2easy
Thanks in advance. As stated before i am a novice at this and trying to teach myself as i go along. Any help would be great.
<html>
<head>
<style>
/*main menu*/
.main-menu ul {
list-style: none;
padding: 0;
margin: 0;
}
/*drop down*/
.drop {
width: auto;
cursor: default;
}
div.drop ul {
list-style: none;
display: none;
position: absloute;
background-color: white;
color: black;
margin: 0.1em 0 0 0;
padding: 0;
font-family: Comic Sans MS;
font-size: 80%;
}
div.drop:hover ul {
display: block;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="main-menu">
<a href="index.htm">Home</a>
<a href="news.shtml">News</a>
<div id="drop" class="drop">
<a href="#">Class Pages</a>
<ul>
<li><a href="class1.shtml">Class 1</a></li>
<li><a href="class2.shtml">Class 2</a></li>
</ul>
</div>
<a href="login.asp">Maintenance</a>
</div>
</body>
</html>