If you only want the span so you can style the cat links, you should be able to do it using the right CSS selector, no hacking or plugin needed. For example, the cat links in my blog look like
HTML Code:
<li class="cat-item cat-item-5">
<a href="http://www.mittineague.com/blog/category/scripting/"
title="View all posts filed under Scripting">Scripting</a>
</li>
so I can style them with
Code:
.cat-item a {color: #f00; }
It's the same for your blog
HTML Code:
<li class="cat-item cat-item-14">
<a href="http://enhance.qd-creative.co.uk/category/accessibility/"
title="View all posts filed under Accessibility">Accessibility</a>
</li>
Bookmarks