Is there a way to omit the vertical line after the last item in this
example?
http://css.maxdesign.com.au/listamatic/horizontal16.htm
Thank you in advance.
The easiest/quickest way would probably be to define a class for your
last li element in you HTML
<li><a href="#" class="last">Item five</a></li>
and change your CSS for that element
li a
{border-right: none;}
I didn't test this.
Cheers,
Tim