I'm toying around with putting images in place of the Category headings in the sidebar, instead of plain text.
The image tag:
<img src="http://www.site.com/image.jpg" alt="image" />
works if I put it right above line:
<h2>CATEGORY HEADING</h2>
but NOT when I put it above lines like:
<?php get_links_list('id'); ?>
and
<h2><?php _e('Register'); ?></h2>
The image will show up, but the category heading TEXT is still there.
How do I get rid of the category text so that only the image stays?
Right now I'm able to put in text images where I can, as you can see on my blog - but the remaining ones I'm not able to change.
Thanks!