Hi,
my problem is that I've got menu and want to have separators beetwen every <li>
ul#nav li {
display: inline;
font-size: 1.3em;
background: url(img/2/separator.jpg) right no-repeat;
padding: 10px;
}
but when I add
ul#nav li:first-child {
background: url(img/2/separator.jpg) left no-repeat;
}
it shows separator only on the left, not right and left in first item.
is it possible to do that through css?
cheers