QUOTE(mxweb @ Oct 3 2006, 02:04 PM)

tose menues are more along the lines of what i need. i dont rely know css i know simple commands but not a lot.
I see. Well, maybe i can do a "quicky" of what you need and post back later. Though, no promises.

Edit:
Ok, i managed to pull off what i think is what you want.
Here's the CSS for it:
CODE
.main {
list-style: none;
}
.main li:before {
content: " > ";
}
.nest {
list-style: none;
font-style: italic;
padding-left: 20px;
}
.nest li:before {
content: " - ";
}
ul.nest {
display: none;
}
ul.main li:hover ul.nest {
display: block;
}
And here's the HTML for the list:
CODE
<ul class="main">
<li>Web Design
<ul class="nest">
<li>Reseller</li>
<li>Shared</li>
</ul>
</li>
<li>Website Design</li>
<li>56k Dial-Up Internet
<ul class="nest">
<li>Information</li>
</ul>
</li>
<li>Domain Registration</li>
<li>Merchant Accounts</li>
<li>Reseller Program</li>
</ul>
Comment/Reply (w/o sign-up)