Playing a little fast and loose with the css there, eh?
Revert to the default and add/change the highlighted:
Code:
.ddsmoothmenuc{
background: #414141; /*background of menu bar (default state)*/
}
.ddsmoothmenu{
font: bold 12px Verdana;
background: #414141; /*background of menu bar (default state)*/
margin: 0 auto;
width: 960px; /* change this to the width of your menu */
}
.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-styl . . .
And put a div around the menu div:
Code:
<!-- Start Navigation -->
<div class="ddsmoothmenuc">
<div id="smoothmenu1" class="ddsmoothmenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About Us</a>
<ul>
<li><a href="#">Sub Item 1.1</a></li>
<li><a href="#">Sub It . . .
. . . b Item 3.1.1.5</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<br style="clear: left" />
</div>
</div>
<!-- End navigation -->
That's it!
Bookmarks