maybe I should post this in a different forum.
I tested that and for me, it outputs this:
<li id="linkcat-2" class="linkcat">
<h3>Blogroll</h3>Useful calculators.</h3>
<ul>
<li><a href="http://boren.nu/">Ryan</a></li>
<li><a href="http://dougal.gunters.org/">Dougal</a></li>
<li><a href="http://inphotos.org/">Donncha</a></li>
<li><a href="http://photomatt.net/">Matt</a></li>
<li><a href="http://www.alexking.org/">Alex</a></li>
<li><a href="http://zed1.com/journalized/">Mike</a></li>
<li><a href="http://zengun.org/weblog/">Michel</a></li>
</ul>
</li>
which is semantically correct.
what are you trying to remove, do you NOT have a corresponding closing </li> ?
It’s not the closing </li> Is the <li> befor the title that puts a bullet on the page that I don’t like.
So if I could git rid of that <li> I wouldn’t have the bullet befor the title.
I suppose i could git rid of it using css, but I really don’t know much about css.
If you do not want a bullet, you can always use the following code for the particular LI. I am just assuming the structure, so edit it to your site’s requirements.
sidebar.ul li {
list-style-type: none;
}