Hello all!
Aside from the primary links, I have defined another menu. This second menu is only displayed in a certain section.
The issue I'm having is a presentational issue. The menu items, styled with css, are suppose to have a bottom border except for the last menu item.
So, my css is
li { border-bottom:1px solid black; }
This produces
item 1
-------
item2
-------
item 3
-------
but should look like (note the last item should not have a bottom border)
item 1
-------
item2
-------
item 3
Normally, I would apply a last
class to the last menu item and use li.last { border:none; }
.
Is there any way to do this? Override something to apply the last
class name to the last list item? Thanks.