Quote:
Originally Posted by SpawnedX
Thank you, I got that all figured out.
I have one more issue, I want to put a | between all the sub-menu items without putting one before the first option or after the last. Any ideas on the best way to accomplish this?
|
you can put a line between them by adding this to additional css:
Code:
.navtabs ul li {
border-right: 1px solid #FFFFFF;
}
but it also puts a line after the last one, i don't think there's a way to avoid that.