Hi Veronica,
Okay, I'm a little lost.
Right now I have 2 CSS files, 1 JS file, and one HTML file....
site.css is as follows:
Code:
<link rel="stylesheet" href="menu.css">
<!--Main Style Sheet for Fonts-->
.style1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #FFFFFF;
line-height: 20px;
}
........
menu.css is as follows (Truncated):
Code:
<script src="css/dropdown.js" type="text/javascript">
</script>
<link rel="stylesheet" href="dropdown.js">
<!--Drop Down Menu Information-->
#dropmenudiv{
position:absolute;
background-color: #1A3A77;
border:1px solid black;
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
}
#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
}
#dropmenudiv a:hover{ /*hover background color*/
background-color: #1A3A77;
}
dropdown.js is as follows: (Truncated)
Code:
<script src="css/dropdown.js" type="text/javascript">
//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="history.html">HDS History</a>'
menu1[1]='<a href="board.html">Board of Directors</a>'
.....
and the html file's header is as follows:
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Heart Defects Society of Windsor and Essex County</title>
<link rel="stylesheet" href="css/site.css">
<!--/***********************************************
* AnyLink Vertical Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/-->
</head>
I know I'm messing up the links somewhere! It's not working anymore, so I know something's not right. I was all schmart though, and made a back up copy before I started messing with it
(I didn't upload the "test" version to the site yet).
Thanks for trying to help!! I'm usually pretty good with stuff like this, but when I get lost on some small thing, it can mess me up for life
then I get all frustrated and drop it. I love the way the site's looking so far, though, so I don't want to drop it!!!
Bookmarks