Hello all. I am having an issue with a text widget I've placed in my sidebar. You can see my blog at http://www.markgouldblog.com
The issue I'm having is that small 16 x 16px icons are not showing up next to del.ico.us, flickr, faceboook, etc. under "Find me online"
Here is the code I've placed into the text widget. As far as I can tell, the code is right. Is there something going on with the CSS that isn't allowing space for them to show up? Would appreciate any help on this issue.
<ul>
<li>
<a target="_blank" href="http://delicious.com/gouldimal">
<img alt="del.ico.us" height="16" width="16" src="images/delicious.png"/>
</a>
</li>
<li>
<a target="_blank" href="http://www.linkedin.com/in/markjgould">
<img alt="LinkedIn" height="16" width="16" src="images/linkedin.png"/>
</a>
</li>
<li>
<a target="_blank" href="http://www.facebook.com/home.php?#/profile.php?id=173701715&ref=profile">
<img alt="facebook" height="16" width="16" src="images/facebook.png"/>
</a>
</li>
<li>
<a target="_blank" href="http://www.flickr.com/photos/30529234@N03/sets/">
<img alt="flickr" height="16" width="16" src="images/flickr.png"/>
</a>
</li>
</ul>