Hi,
I have a basic unordered list in my site map, with a few sub-indentations:
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
<ul>
<li>sub-itemA</li>
</ul>
<li>item4</li>
<li>item5</li>
</ul>
My problem is that I have a space/break in between sub-item A and regular line item 4. I can't seem to close the space.
My css is simple:
#site-map li {margin-bottom: 0;margin-top: 0 }
What am I missing?
Any help is much appreciated! Thanks!