Hi, it is CSS and XHTML. Here are the files.
As you will see, I was trying to create home where you click on the word (HOME) and it takes you back to index.html. Didn't work. I think the problem is with the CSS (or both).
Thank you for your input.
XHTML CODE:
------------------------------------------------
<div id="menu">
<ul>
<li><h2>home</h2> <a href="index.html" title="home"></a>home</li>
</ul>
<ul>
<li><h2>about</h2>
<ul>
<li><a href="profile.html" title="about">profile</a></li>
<li><a href="resume.html" title="resume">services</a> </li>
</ul>
</li>
</ul>
<ul>
<li><h2>marketing</h2>
<ul>
<li><a href="marketing.html" title="marketing">marketing</a></li>
</ul>
</li>
</ul>
<ul>
<li><h2>advertising</h2> <a href="advertising.html" title="advertising"></a> </li>
</ul>
<ul>
<li><h2>resource center</h2>
<ul>
<li><a href="mktgnews.html" title="latest marketing news">latest marketing news</a></li>
<li><a href="mktgres.html" title="marketing research">marketing research</a> </li>
<li><a href="pricing.html" title="pricing">pricing</a> </li>
<li><a href="tools.html" title="marketing tools">marketing tools</a> </li>
</ul>
</li>
</ul>
<ul>
<li><h2>contact</h2>
<ul>
<li><a href="contact.html" title="contact">contact</a></li>
</ul>
</li>
</ul>
------------------------------------
CSS CODE
------------------------------------
/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus - 20050131 */
/* Begin CSS Popout Menu */
#head{
height: 50px;
}
#menu{
width:70em;
float:left;
text-align: center;
margin-left: +4em;
margin-top: +.20px;
padding: 0 0 0 0;
font-family: "Calisto MT", Monaco, serif;
}
#menu a, #menu h2{
font:bold;
display:block;
border-width:1px;
border-style:solid;
border-color:#ccc #888 #555 #bbb;
white-space: nowrap;
font-family: "Calisto MT", Monaco;
font-size: .9em;
color: #777777;}
#menu h2{
color: #838383;
background: #ffffcc;
}
#menu a{
background: #ffffcc;
text-decoration:none;
}
#menu a, #menu a:visited{
color: #838383;
}
#menu a:hover{
color:#000;
background:#ddd;
}
#menu a:active{
color:#060;
background:#ccc;
}
#menu ul{
list-style:none;
float:left;
width:120px;
padding: 0 0 0 0;
}
#menu li{
position:relative;
}
#menu ul ul{
position:absolute;
z-index:400;
top:auto;
display:none;
}
#menu ul ul ul{
top:0;
left:100%;
}
/* Begin non-anchor hover selectors */
/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */
div#menu h2:hover{
background: #eee -999px -9999px;
}
div#menu li:hover{
cursor

ointer;
z-index:100;
}
div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}
div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{display:block;}
/* End of non-anchor hover selectors */
/* Styling for Expand */
#menu a.x, #menu a.x:visited{
font-weight:bold;
background:#eee;
}
#menu a.x:hover{
color:#a00;
background:#ddd;
}
#menu a.x:active{
color:#060;
background:#ccc;
}
/* End CSS Popout Menu */