CSS footer menu question...
Posted: Wed Apr 04, 2007 2:46 pm
This might sound like an easy problem to solve but I've checked the forums and couldn't find an answer:
I have included a horizontal footer menu in an unordered list format to a site I'm working on and it uses the {menu} tag so it's all dynamic.
What I want to do is remove the left hand side border (or seperator) on the first list item of the menu. Usually this is done in the style sheet with something like;
But since this is using the {menu} tag to display, how do I add a class to the first list item?
I have included a horizontal footer menu in an unordered list format to a site I'm working on and it uses the {menu} tag so it's all dynamic.
What I want to do is remove the left hand side border (or seperator) on the first list item of the menu. Usually this is done in the style sheet with something like;
Code: Select all
#footer ul li.first {
margin-left: 0;
border-left: none;
list-style: none;
display: inline;
}