FireGeek21
Technical User
I am updating the menus on my website so they display as menu categories with list items that drop down and are viewable when you hover over the menu item. One of my webpages works but 2 others do not. Before I continue with my updates, I would like to identify the issue. Unfortunately, I cannot figure it out at this point.
This webpage works:
These do not: and
Here is the css involved (from a common CSS file):
Here is the menu html code (in separate .html files):
THANKS FOR THE HELP!!!
FireGeek
(currently using Crystal Reports XI with Lawson 9.01)
This webpage works:
These do not: and
Here is the css involved (from a common CSS file):
CSS:
#navbar
{
margin: 0;
padding: 0;
}
#navbar li
{
list-style: none;
float: left;
font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
color: #FFCC00;
font-size: 13px;
line-height: 16px;
min-height: 16px;
}
#navbar li a
{
display: block;
padding: 10px 15px 4px;
font-size: 13px;
background-color: #000000;
font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
color: #FFCC00;
font-size: 13px;
line-height: 16px;
min-height: 16px;
text-decoration: none;
}
#navbar li ul
{
display: none;
font-size: 13px;
width: 10em; /* Width to help Opera out */
font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
color: #FFCC00;
font-size: 13px;
line-height: 16px;
min-height: 16px;
}
#navbar li:hover ul
{
display: block;
position: absolute;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
color: #FFCC00;
font-size: 13px;
line-height: 16px;
min-height: 16px;
}
#navbar li:hover li
{
float: none;
color: #FFCC00;
}
#navbar li:hover li a
{
background-color: #000000;
border-bottom: 1px solid #FFCC00;
border-left: 1px solid #FFCC00;
border-right: 1px solid #FFCC00;
color: #FFCC00;
font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
font-size: 13px;
line-height: 16px;
min-height: 16px;
}
#navbar li li a:hover
{
background-color: #FFCC00;
color: #000000;
}
Here is the menu html code (in separate .html files):
HTML:
<div class="lpxcenterpageouter">
<div class="lpxcenterpageinner">
<!-- Short MFD Banner -->
<div style="position: absolute; top: 7px; left: 15px; width: 820px; height: 150px; z-index: 5;">
<img height="150" width="820" alt="" src="/includes/images/Header2013_b.png">
</div>
<!-- Light Gray Background> -->
<div style="position: absolute; top: 0px; left: 0px; width: 850px; height: 1600px; z-index: -100;">
<div style="height: 1600px; padding: 0; border-width: 0; border-color: #000000; border-style: solid; background-color: #BDBDBD;"></div>
</div>
<div class="linkpos">
<ul id="navbar">
<li><a href="[URL unfurl="true"]http://www.mukwonagofire.org"><u>Home</u></a></li>[/URL]
<li><a href=""><u>Resources</u></a>
<ul>
<li><a href="/BurnPermits.html">Burning Permits</a></li>
<li><a href="/LearnCPR.html">Learn CPR</a></li>
<li><a href="/FD_LINKS/links.html">Links</a></li>
</ul>
</li>
<li><a href="/POLICIES/sogs.html"><u>Policies & SOGs</u></a>
<ul>
<li><a href="/CommissionReview.html">Commission</a></li>
</ul>
</li>
<li><a href=""><u>About Us</u></a>
<ul>
<li><a href="/Employment.html">Employment</a></li>
<li><a href="/mission.html">Mission</a></li>
<li><a href="/ContactInformation.html">Contact Us</a></li>
</ul>
</li>
<li><a href="/MFDSECURE/_mfdsecure.html"><u>MFD LOGIN</u></a></li>
</ul>
</div>
</div>
</div>
THANKS FOR THE HELP!!!
FireGeek
(currently using Crystal Reports XI with Lawson 9.01)