Drop-down menu in Dreamweaver CS5.5 not displaying

Thanks for anyone's help.  I'm a first time user of the forum so please excuse any protocol errors.
I can't get my drop-down menu to display on my web page (http://www.cglcontracting.com/) on a Windows platform using Dreamweaver CS5.5.
Thanks very much for any advice/help.

Hi again -
My previous suggestion did not seem to make any difference, the CSS still did not validate.
I seems to be choking on your Browser Hack section.
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.cglcontracting.com%2FSpr yAssets%2FSpryMenuBarHorizontal.css&profile=css3&usermedium=all&warning=1&vextwarning=&lan g=en
I re-wrote the bottom Browser Hack section and it now validates.
I'll paste the whole CSS file here, Save it as "SpryMenuBarHorizontal.css" and give it a try.
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
LAYOUT INFORMATION: describes box model, positioning, z-order
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 90%;
    cursor: default;
    width: auto;
    color: rgb(153,153,153);
    text-transform: uppercase;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: rgb(255,255,255);
    vertical-align: middle;
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
    color: rgb(153,153,153);
    z-index: 1000;
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 8em;
    float: left;
    color: rgb(0,255,0);
    overflow: hidden;
    visibility: inherit;
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    color: rgb(204,204,204);
    top: 0px;
    overflow: auto;
    visibility: inherit;
    margin-top: -5%;
    margin-left: 95%;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    color: rgb(204,204,204);
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    text-transform: uppercase;
    background-color: rgb(255,0,0);
    left: auto;
    width: auto;
    z-index: auto;
    visibility: inherit;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
    text-align: left;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
    background-color: rgb(204,204,204);
    margin-top: -5%;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 95%;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: 100px;
    background-color: rgb(204,204,204);
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
    border: 0px none #CCC;
    margin-top: 0%;
    margin-right: 0%;
    margin-bottom: 0%;
    margin-left: 0%;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #F00;
    color: #003;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 1.2ex;
    font-weight: bold;
    vertical-align: middle;
    padding-bottom: 0.53em;
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #000;
    color: rgb(255,255,255);
    text-align: center;
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #900;
    color: #066;
    text-align: center;
    vertical-align: middle;
SUBMENU INDICATION: styles if there is a submenu under a given menu item
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: rgb(255,0,0);
    color: rgb(0,0,51);
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: rgb(204,204,204);
    visibility: inherit;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: rgb(153,0,0);
    visibility: visible;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: rgb(153,153,153);
BROWSER HACKS: the hacks below should not be changed unless you are an expert
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
    position: absolute;
    z-index: 1010;
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
    ul.MenuBarVertical li.MenuBarItemIE
        display: inline;
        f\loat: left;
        background: #FFF;

Similar Messages

  • Navigation Bar Drop Down Menu for Dreamweaver CS5

    Does anybody know how to make a navigation bar with drop down menus in CS5 flash?
    -Harley

    Does anybody know how to make a navigation bar with drop down menus in CS5 flash?
    -Harley

  • Dependent Drop-Down Menu in Dreamweaver CS3 and ADDT

    Hi All,
    I have been trying to create a dependent drop--down menu so that when I select an item the corresponding information would populate the other field or fields. So far I have tried to use the tutorial posted on the link below by Waleed Barakat but I have had no sucess.
    http://www.tutorials-expert.com/tutorial/20354/-How-To-Create-Dependent-Dropdown -ListMenu-Forms.html
    I wanted to know if anyone has something else that I can review to help me in this process.
    Thanks

    Please refer to this article (http://forums.adobe.com/message/1069624#1069624) for information on how your tables should be set up.
    Date: Wed, 10 Jun 2009 00:49:28 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: Dependent Drop-Down Menu in Dreamweaver CS3 and ADDT
    Hi Georgev63,
    I followed the instructions to the link you sent me and it did not produce the results I had hope for.
    The directions are pretty straight forward and I attempted the steps several times with the same results.
    Basically the field that supposed to be the detail field is blank rather than having the ID of the master field.
    Any further suggestions would be much appreciated.
    Thanks
    E.
    >

  • Adobe Form... Is there a way to use a drop down menu to highlight or note other fields...

    I am working on a simple Adobe form.  I am currently trying to figure out if there is a way to use the answers of a drop down menu to either mark, note or highlight 14 other fields.  There are 9 possibilities in the drop down menu, include a blank and NONE.
    For example if the drop down menu is set to 1, then field 9, 10 and 14 are marked, noted or highlighted. 
    Is this possible with a script?
    Thank you in advance for any help! 

    Have you looked at the properties that are available to form fields. I would look at setting the fill color or border color for a form field. Either of these can be done with Acrobat JavaScript.

  • I am trying to complete a form but can't get to the final drop down question as it is not displayed because it falls below where my screen ends.  i have tried changing the resolution but that doesn't work.  any suggestions?

    i am trying to complete a form but can't get to the final drop down question as it is not displayed because it falls below where my screen ends.  i have tried changing the resolution but that doesn't work.  any suggestions?

    brilliant
    google chrome works where safari doesn't on my macbook air.  many thanks
    i now have an embarrassing qu.  have dowloaded spider solitaire (sad!) and i can't add cards at the bottom of a column for the same reason - the display cuts short.  i have tried to extend it with the arrows in the bottom corners but it makes no difference.  any ideas?

  • Drop Down Menu in Dreamweaver CS3

    Is it possible to add a Drop Down Menu in Dreamweaver CS3 in an already existing navigation bar?

    Ok, I made one a link. See below...
    <div id="nav">
        <ul>
          <li class="style1"><a href="index.html">Home</a></li>
          <li class="style1"><a href="Vinyard/vinyard.html">Vineyard</a></li>
          <li class="style1"><a href="http://millnerheritage.com/Wines/winesTest.html">Winery</a><a href="Winery/winery.html"></a></li>
          <li class="style1"><a href="Wines/winesTest.html">Wines</a></li>
          <li class="style1"><a href="Wines/winesTest.html">Events</a></li>
          <li class="style1"><a href="Heritage/heritage.html">Heritage</a></li>
          <li class="style1"><a href="Classes/classes.html">Classes</a></li>
          <li class="style1"><a href="photos.html">Gallery</a></li>
          <li class="style1"><a href="Links/links.html">Links</a></li>
          <li class="style1"><a href="Order Online/order.html">Order Online</a></li>
          <li class="style1"><a href="Contact/contact.php">Contact<br />
          </a>        </li>
        </ul>

  • Fireworks drop down menu in Dreamweaver not working..

    I have created a drop down menu in fireworks uploaded it to dreamweaver and tested it in the preview in firefox option and it worked fine. But when i uploaded the page to my website it did not work how can i make it work?
    Heres the code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <style type="text/css" media="screen">
        @import url("navbar.css"); 
    #Layer1 { 
        position:absolute; 
        left:50%; 
    top:50%; 
        width:200px; 
        height:52px; 
        z-index:1; 
        left: 258px; 
        top: 100px; 
    body { 
        background-image: url(Chicken%20background.png); 
    #Layer2 { 
        position:absolute; 
    left:300px; 
    top:-1px; 
        width:200px; 
        height:73px; 
        z-index:2; 
        left: 302px; 
        top: 26px; 
    #Layer3 { 
        position:absolute; 
        width:200px; 
        height:115px; 
        z-index:3; 
        left: 373px; 
        top: 208px; 
    </style> 
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script> 
    </head> 
    <body>
    <div id="Layer1">
    <div id="FWTableContainer2076544957">
      <table border="0" cellpadding="0" cellspacing="0" width="850">
        <!-- fwtable fwsrc="Untitled" fwbase="navbar.jpg" fwstyle="Dreamweaver" fwdocid = "2076544957" fwnested="0" -->
        <tr>
          <td><img src="spacer.gif" width="9" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="11" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="12" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="10" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="4" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="4" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="11"><img name="navbar_r1_c1" src="navbar_r1_c1.jpg" width="850" height="2" border="0" id="navbar_r1_c1" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="2" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="9"><img name="navbar_r2_c1" src="navbar_r2_c1.jpg" width="686" height="1" border="0" id="navbar_r2_c1" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164902_0', 'MMMenu0915164902_0',5,42,'navbar_r2_c10');"><img name="navbar_r2_c10" src="navbar_r2_c10.jpg" width="160" height="41" border="0" id="navbar_r2_c10" alt="" /></a></td>
          <td rowspan="6"><img name="navbar_r2_c11" src="navbar_r2_c11.jpg" width="4" height="48" border="0" id="navbar_r2_c11" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="3"><img name="navbar_r3_c1" src="navbar_r3_c1.jpg" width="180" height="1" border="0" id="navbar_r3_c1" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164218_1', 'MMMenu0915164218_1',11,42,'navbar_r3_c4');"><img name="navbar_r3_c4" src="navbar_r3_c4.jpg" width="160" height="41" border="0" id="navbar_r3_c4" alt="" /></a></td>
          <td rowspan="5"><img name="navbar_r3_c5" src="navbar_r3_c5.jpg" width="12" height="47" border="0" id="navbar_r3_c5" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164502_2', 'MMMenu0915164502_2',1,42,'navbar_r3_c6');"><img name="navbar_r3_c6" src="navbar_r3_c6.jpg" width="160" height="41" border="0" id="navbar_r3_c6" alt="" /></a></td>
          <td colspan="3"><img name="navbar_r3_c7" src="navbar_r3_c7.jpg" width="174" height="1" border="0" id="navbar_r3_c7" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="4"><img name="navbar_r4_c1" src="navbar_r4_c1.jpg" width="9" height="46" border="0" id="navbar_r4_c1" alt="" /></td>
          <td rowspan="3"><a href="homepage.html"><img name="navbar_r4_c2" src="navbar_r4_c2.jpg" width="160" height="41" border="0" id="navbar_r4_c2" alt="" /></a></td>
          <td rowspan="4"><img name="navbar_r4_c3" src="navbar_r4_c3.jpg" width="11" height="46" border="0" id="navbar_r4_c3" alt="" /></td>
          <td rowspan="4"><img name="navbar_r4_c7" src="navbar_r4_c7.jpg" width="10" height="46" border="0" id="navbar_r4_c7" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164633_3', 'MMMenu0915164633_3',0,41,'navbar_r4_c8');"><img name="navbar_r4_c8" src="navbar_r4_c8.jpg" width="160" height="41" border="0" id="navbar_r4_c8" alt="" /></a></td>
          <td rowspan="4"><img name="navbar_r4_c9" src="navbar_r4_c9.jpg" width="4" height="46" border="0" id="navbar_r4_c9" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="39" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="3"><img name="navbar_r5_c10" src="navbar_r5_c10.jpg" width="160" height="7" border="0" id="navbar_r5_c10" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="2"><img name="navbar_r6_c4" src="navbar_r6_c4.jpg" width="160" height="6" border="0" id="navbar_r6_c4" alt="" /></td>
          <td rowspan="2"><img name="navbar_r6_c6" src="navbar_r6_c6.jpg" width="160" height="6" border="0" id="navbar_r6_c6" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td><img name="navbar_r7_c2" src="navbar_r7_c2.jpg" width="160" height="5" border="0" id="navbar_r7_c2" alt="" /></td>
          <td><img name="navbar_r7_c8" src="navbar_r7_c8.jpg" width="160" height="5" border="0" id="navbar_r7_c8" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="5" border="0" alt="" /></td>
        </tr>
      </table>
      <div id="MMMenuContainer0915164902_0">
        <div id="MMMenu0915164902_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="cats.html" target="_self" id="MMMenu0915164902_0_Item_0" class="MMMIFVStyleMMMenu0915164902_0" onmouseover="MM_menuOverMenuItem('MMMenu0915164902_0');"> Cats </a> <a href="other.html" target="_self" id="MMMenu0915164902_0_Item_1" class="MMMIVStyleMMMenu0915164902_0" onmouseover="MM_menuOverMenuItem('MMMenu0915164902_0');"> Other stuff </a> </div>
      </div>
      <div id="MMMenuContainer0915164218_1">
        <div id="MMMenu0915164218_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="stationery.html" target="_self" id="MMMenu0915164218_1_Item_0" class="MMMIFVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Stationery </a> <a href="art.html" target="_self" id="MMMenu0915164218_1_Item_1" class="MMMIVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Art </a> <a href="gifts.html" target="_self" id="MMMenu0915164218_1_Item_2" class="MMMIVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Great Gifts </a> </div>
      </div>
      <div id="MMMenuContainer0915164502_2">
        <div id="MMMenu0915164502_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="contactemail.html" target="_self" id="MMMenu0915164502_2_Item_0" class="MMMIFVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Email </a> <a href="contactmap.html" target="_self" id="MMMenu0915164502_2_Item_1" class="MMMIVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Map </a> <a href="contactnumbers.html" target="_self" id="MMMenu0915164502_2_Item_2" class="MMMIVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Phone Numbers </a> </div>
      </div>
      <div id="MMMenuContainer0915164633_3">
        <div id="MMMenu0915164633_3" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="suppliers.html" target="_self" id="MMMenu0915164633_3_Item_0" class="MMMIFVStyleMMMenu0915164633_3" onmouseover="MM_menuOverMenuItem('MMMenu0915164633_3');"> Suppliers </a> <a href="topics.html" id="MMMenu0915164633_3_Item_1" class="MMMIVStyleMMMenu0915164633_3" onmouseover="MM_menuOverMenuItem('MMMenu0915164633_3');"> Related topics </a> </div>
      </div>
    </div>
    </div>
    <div id="Layer2">
    <img src="title.png" alt="title" width="750" height="70" /></div>
    </body>
    </html>

    I have created a drop down menu in fireworks uploaded it to dreamweaver and tested it in the preview in firefox option and it worked fine. But when i uploaded the page to my website it did not work how can i make it work?
    Heres the code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <style type="text/css" media="screen">
        @import url("navbar.css"); 
    #Layer1 { 
        position:absolute; 
        left:50%; 
    top:50%; 
        width:200px; 
        height:52px; 
        z-index:1; 
        left: 258px; 
        top: 100px; 
    body { 
        background-image: url(Chicken%20background.png); 
    #Layer2 { 
        position:absolute; 
    left:300px; 
    top:-1px; 
        width:200px; 
        height:73px; 
        z-index:2; 
        left: 302px; 
        top: 26px; 
    #Layer3 { 
        position:absolute; 
        width:200px; 
        height:115px; 
        z-index:3; 
        left: 373px; 
        top: 208px; 
    </style> 
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script> 
    </head> 
    <body>
    <div id="Layer1">
    <div id="FWTableContainer2076544957">
      <table border="0" cellpadding="0" cellspacing="0" width="850">
        <!-- fwtable fwsrc="Untitled" fwbase="navbar.jpg" fwstyle="Dreamweaver" fwdocid = "2076544957" fwnested="0" -->
        <tr>
          <td><img src="spacer.gif" width="9" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="11" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="12" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="10" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="4" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="160" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="4" height="1" border="0" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="11"><img name="navbar_r1_c1" src="navbar_r1_c1.jpg" width="850" height="2" border="0" id="navbar_r1_c1" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="2" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="9"><img name="navbar_r2_c1" src="navbar_r2_c1.jpg" width="686" height="1" border="0" id="navbar_r2_c1" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164902_0', 'MMMenu0915164902_0',5,42,'navbar_r2_c10');"><img name="navbar_r2_c10" src="navbar_r2_c10.jpg" width="160" height="41" border="0" id="navbar_r2_c10" alt="" /></a></td>
          <td rowspan="6"><img name="navbar_r2_c11" src="navbar_r2_c11.jpg" width="4" height="48" border="0" id="navbar_r2_c11" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="3"><img name="navbar_r3_c1" src="navbar_r3_c1.jpg" width="180" height="1" border="0" id="navbar_r3_c1" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164218_1', 'MMMenu0915164218_1',11,42,'navbar_r3_c4');"><img name="navbar_r3_c4" src="navbar_r3_c4.jpg" width="160" height="41" border="0" id="navbar_r3_c4" alt="" /></a></td>
          <td rowspan="5"><img name="navbar_r3_c5" src="navbar_r3_c5.jpg" width="12" height="47" border="0" id="navbar_r3_c5" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164502_2', 'MMMenu0915164502_2',1,42,'navbar_r3_c6');"><img name="navbar_r3_c6" src="navbar_r3_c6.jpg" width="160" height="41" border="0" id="navbar_r3_c6" alt="" /></a></td>
          <td colspan="3"><img name="navbar_r3_c7" src="navbar_r3_c7.jpg" width="174" height="1" border="0" id="navbar_r3_c7" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="4"><img name="navbar_r4_c1" src="navbar_r4_c1.jpg" width="9" height="46" border="0" id="navbar_r4_c1" alt="" /></td>
          <td rowspan="3"><a href="homepage.html"><img name="navbar_r4_c2" src="navbar_r4_c2.jpg" width="160" height="41" border="0" id="navbar_r4_c2" alt="" /></a></td>
          <td rowspan="4"><img name="navbar_r4_c3" src="navbar_r4_c3.jpg" width="11" height="46" border="0" id="navbar_r4_c3" alt="" /></td>
          <td rowspan="4"><img name="navbar_r4_c7" src="navbar_r4_c7.jpg" width="10" height="46" border="0" id="navbar_r4_c7" alt="" /></td>
          <td rowspan="3"><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0915164633_3', 'MMMenu0915164633_3',0,41,'navbar_r4_c8');"><img name="navbar_r4_c8" src="navbar_r4_c8.jpg" width="160" height="41" border="0" id="navbar_r4_c8" alt="" /></a></td>
          <td rowspan="4"><img name="navbar_r4_c9" src="navbar_r4_c9.jpg" width="4" height="46" border="0" id="navbar_r4_c9" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="39" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="3"><img name="navbar_r5_c10" src="navbar_r5_c10.jpg" width="160" height="7" border="0" id="navbar_r5_c10" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="2"><img name="navbar_r6_c4" src="navbar_r6_c4.jpg" width="160" height="6" border="0" id="navbar_r6_c4" alt="" /></td>
          <td rowspan="2"><img name="navbar_r6_c6" src="navbar_r6_c6.jpg" width="160" height="6" border="0" id="navbar_r6_c6" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td><img name="navbar_r7_c2" src="navbar_r7_c2.jpg" width="160" height="5" border="0" id="navbar_r7_c2" alt="" /></td>
          <td><img name="navbar_r7_c8" src="navbar_r7_c8.jpg" width="160" height="5" border="0" id="navbar_r7_c8" alt="" /></td>
          <td><img src="spacer.gif" width="1" height="5" border="0" alt="" /></td>
        </tr>
      </table>
      <div id="MMMenuContainer0915164902_0">
        <div id="MMMenu0915164902_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="cats.html" target="_self" id="MMMenu0915164902_0_Item_0" class="MMMIFVStyleMMMenu0915164902_0" onmouseover="MM_menuOverMenuItem('MMMenu0915164902_0');"> Cats </a> <a href="other.html" target="_self" id="MMMenu0915164902_0_Item_1" class="MMMIVStyleMMMenu0915164902_0" onmouseover="MM_menuOverMenuItem('MMMenu0915164902_0');"> Other stuff </a> </div>
      </div>
      <div id="MMMenuContainer0915164218_1">
        <div id="MMMenu0915164218_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="stationery.html" target="_self" id="MMMenu0915164218_1_Item_0" class="MMMIFVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Stationery </a> <a href="art.html" target="_self" id="MMMenu0915164218_1_Item_1" class="MMMIVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Art </a> <a href="gifts.html" target="_self" id="MMMenu0915164218_1_Item_2" class="MMMIVStyleMMMenu0915164218_1" onmouseover="MM_menuOverMenuItem('MMMenu0915164218_1');"> Great Gifts </a> </div>
      </div>
      <div id="MMMenuContainer0915164502_2">
        <div id="MMMenu0915164502_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="contactemail.html" target="_self" id="MMMenu0915164502_2_Item_0" class="MMMIFVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Email </a> <a href="contactmap.html" target="_self" id="MMMenu0915164502_2_Item_1" class="MMMIVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Map </a> <a href="contactnumbers.html" target="_self" id="MMMenu0915164502_2_Item_2" class="MMMIVStyleMMMenu0915164502_2" onmouseover="MM_menuOverMenuItem('MMMenu0915164502_2');"> Phone Numbers </a> </div>
      </div>
      <div id="MMMenuContainer0915164633_3">
        <div id="MMMenu0915164633_3" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="suppliers.html" target="_self" id="MMMenu0915164633_3_Item_0" class="MMMIFVStyleMMMenu0915164633_3" onmouseover="MM_menuOverMenuItem('MMMenu0915164633_3');"> Suppliers </a> <a href="topics.html" id="MMMenu0915164633_3_Item_1" class="MMMIVStyleMMMenu0915164633_3" onmouseover="MM_menuOverMenuItem('MMMenu0915164633_3');"> Related topics </a> </div>
      </div>
    </div>
    </div>
    <div id="Layer2">
    <img src="title.png" alt="title" width="750" height="70" /></div>
    </body>
    </html>

  • Drop-down menu in Dreamweaver; template on top of template issue

    Hello.
    I've managed to create a drop-down menu in a dreamweaver
    template by saving the .dwt file as an .html file, building the
    menu, then resaving the file as the original .dwt. However, I have
    another template that is based on this original template, and while
    the drop-down menu appears when I preview the second template in my
    browser, it refuses to apply to the pages upon which the second
    template is based.
    Is there a solution to this?

    You are completely hosed now.
    When you save a template as HTML, you leave the Template
    markup in the page.
    When you then resave it as a template you duplicate that
    markup. You will
    never be able to use this properly now. And that is
    especially true with
    the AWFUL DW pop-up menus in it. You just must not use these
    menus with
    templates. Especially since there are much better ways that
    don't have any
    such restrictions -
    Check the uberlink and McFly tutorials at PVII
    http://www.projectseven.com/)
    and the Navbar tutorial at Thierry's place (
    http://www.tjkdesign.com)
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "xpanda" <[email protected]> wrote in
    message
    news:e9q2gf$oq4$[email protected]..
    > Hello.
    >
    > I've managed to create a drop-down menu in a dreamweaver
    template by
    > saving
    > the .dwt file as an .html file, building the menu, then
    resaving the file
    > as
    > the original .dwt. However, I have another template that
    is based on this
    > original template, and while the drop-down menu appears
    when I preview the
    > second template in my browser, it refuses to apply to
    the pages upon which
    > the
    > second template is based.
    >
    > Is there a solution to this?
    >

  • I want to delete history; the drop down box shown in your instructions is NOT the drop down I get when I right click; the drop down menue I get DOES NOT offer a delete option....I'm stuck, What do I do?

    I am following the directions give in 'Help'. However, I cannot follow them because the Assumed drop down menu is not the one I get, so I am stuck.
    I want to delete my History...
    ...how is this done?

    See:
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]
    * [[Smart Location Bar]]
    * http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox

  • Speaker drop down menu in itunes is not there.

    I have airport express and set up airtunes, but itunes does not have a drop down menu to pick which speakers to play through. There seems to be no support docs on this. The airtunes setup page makes it sound like, hey, no problem, just choose the speakers from the drop down menu in the bottom right of itunes. But it just ain't there, and there is no advice on how to make it work. The airtunes instructions are very lame. It works great for the Internet, and all the software is up to date. I've rebooted, restarted itunes, and airport express. No go. They made it sound so great when I bought airport express.

    Ok, got link by pasting
    To stream music from your computer to an AirPort Express, or to stream videos and music from your computer to Apple TV, click the icon in the bottom right corner of the iTunes application (verify that you have iTunes 10.2 or later)."
    But , my iTunes, 10.5, has no such icon.

  • Drop down menu in dreamweaver

    My drop down menu, when I hover to it show underneath the slide show image.
    how to bring it up

    Try positioning it relative and give it a higher z-index (stacking order) than your slideshow.
    Nancy O.

  • How do you get drop down menu in Yosemite to not drop down?

    When I try to enter a URL or address into the window at the top of the Safari screen in Yosemite, a drop down menu appears with a bunch of icons on it which blocks the screen. I need to see the screen when I'm entering a URL line. How do I get the drop-down with the icons on it to go away?

  • SQL 2000 Database Maintenance Plan drop downs for days, weeks, months, not displaying

    When setting up a SQL 2000 Database Maintenance Plan the drop down for Remove files older than is not populating with hours, days, weeks, or months. It is just blank. The version is  Microsoft SQL Server  2000 - 8.00.2039 (Intel X86)  
    May  3 2005 23:18:38   Copyright (c) 1988-2003 Microsoft Corporation  Desktop Engine on Windows NT 5.2 (Build 3790: Service Pack 2). Is there a fix for this issue?

    This also works. All the credit goes to a user named eyechart.  Great directions provided as well.
    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=47575
    sqlmaint.exe
    was missing from MSDE 2000, but that was fixed in SP1 I think. Since this is SP3
    you probably have a missing registry value for the backup directory.
    I
    had to fix a similar problem last year on a bunch of laptops. They were all
    missing a registry value. Anyway, here is the fix:
    1. Fire up regedit and
    look under HKLM\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer
    2. Ensure you have
    a string value called BackupDirectory. The value for this should be the path to
    your backup dir. The default value is C:\Program Files\Microsoft SQL
    Server\MSSQL\BACKUP
    btw, this fix assumes you have a default instance
    installed. A named instance will have slightly different registry location and
    filesystem path.
    -ec
    Edited by -
    eyechart on 03/25/2005 21:04:27

  • My drop down menues in yahoo mail only display for a few seconds not enough time to select a value. what is causing this since i started using firefox 4.0

    when moving read mail to folders, or selecting new message as text or message, cannot select options to change settings.
    operating system using windows Vista

    when moving read mail to folders, or selecting new message as text or message, cannot select options to change settings.
    operating system using windows Vista

  • When I look for a website to go to the addresses I put in are shown in a drop down menu but they are not in alphabetic order, how do I sort it permanantly?

    I have set Googleas my homepage when I look for a webaddress the drop menu displays the sites however they never stay in alphabetic order, how can I set it so that this happens?

    See this link - http://kb.mozillazine.org/Sorting_and_rearranging_bookmarks_-_Firefox

Maybe you are looking for