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;
}

