Hi,
I'm not quite sure what you are trying to do as you seem to be using the horizontal dropline code.
So I assume that you want a dropline first and then a vertical menu hanging off the dropline?
The first thing to do is to create another nested list at that point.
e.g.
Code:
<li id="email"><a href="/email/index.php">Email</a>
<ul>
<li id="deluxe"><a href="/email/deluxe.php">Deluxe Email</a></li>
<li id="business"><a href="/email/business.php">Business Email</a></li>
<li id="mobile"><a class="last" href="/email/mobile.php">Mobile Email</a></li>
</ul>
</li>
<li><a id="nav-solutions" href="/5/index.php">Web Solutions</a>
<ul>
<li><a class="subsub" href="../2/domains2.php">Dropdown Test</a>
<ul>
<li><a href="#">Test vertical menu</a></li>
<li><a href="#">Test vertical menu</a></li>
<li><a href="#">Test vertical menu</a></li>
<li><a href="#">Test vertical menu</a></li>
<li><a href="#">Test vertical menu</a></li>
</ul>
</li>
<li><a href="design/ecommerce.php">eCommerce Websites</a></li>
<li class="lastli"><a class="last" href="security/index.php">SSL Certificates</a></li>
</ul>
</li>
You can now target that by going one level deeper with your styles.
Code:
.sf-menu li li:hover a.subsub{
position:relative;
z-index:999;
border:1px solid #f06e00;
border-top:none;
border-bottom:1px solid #eee;
padding-left:6px;
background:#eee;
}
.sf-menu li:hover ul li li a {
border-right:none;
z-index:1;
}
.sf-navbar li li{
position:relative;
}
.sf-navbar ul li li{
float: none;
display:block;
margin:0;
background:#eee;
}
.sf-navbar ul li li a {
float:none;
display:block;
position:relative;
border-bottom:1px solid #ccc;
text-align:left!important;
}
.sf-navbar li ul ul {
border:1px solid #f06e00;
width:12em;
background:#eee;
padding:5px;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
z-index:99!important;
top:1.95em!important;
}
That's just tough but gives you the general look of what I think you wanted.
Usually I build my menus before adding the superfish code to them to make sure they are working properly and then layer superfish on top afterwards.
Bookmarks