I am using the dreamweaver "show pop-up menu" feature, but it is not showing up
when I preview in the browser. I know that I must not be using it properly.
So here's the scene: I have a horizontal <div> with several links. The links
are in a list and are styled (see code) with CSS. In design view I highlight a
link, I go to behaviors and choose the "show pop-up menu" option and choose the
styles. Then I preview and nothing is there. What am I missing?
<div id="global_links">
<ul class="global">
<li class="global_links"><a href="#">CVCOE Home</a></li>
<li class="global_links"><a href="
http://www.yqcomputer.com/ ">MCG Home</a></li>
<li class="global_links"><a href="#">School of Medicine</a></li>
<li class="global_links"><a href="#">Patient Services</a></li>
<li class="global_links"><a href="#">Find a Doctor</a></li>
<li class="global_links"><a href="#">Education</a></li>
<li class="global_links"><a href="#">Visitors</a></li>
<li class="global_links"><a href="#">Research</a></li>
</ul>
</div>
#global_links {
background-color: #83A9DA;
position: relative;
visibility: visible;
width: 100%;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
height: auto;
padding-top: 10px;
overflow: hidden;
padding-bottom: 10px;
}
.global a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 1.1em;
font-style: italic;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #000000;
text-decoration: none;
list-style-image: none;
visibility: visible;
margin-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 0.2em;
word-spacing: normal;
}
.global a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 1.1em;
font-style: italic;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #000000;
text-decoration: none;
list-style-image: none;
list-style-type: none;
margin-left: 10px;
padding-top: 10px;
padding-right: 0.2em;
padding-bottom: 10px;
}
.global a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 1.1em;
font-style: italic;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #FFFFFF;
text-decoration: none;
list-style-image: none;
list-style-type: none;
margin-left: 10px;
padding-top: 10px;
padding-right: 0.2em;
padding-bottom: 10px;
}