Tim Madden (Web Designer – Brisbane Australia) created some nice podcast logos:
Instead adding an IMG every time I link to an MP3 file, I just created a CSS style like the following:
a.podcast {
display:block;
height:20px;
padding-left: 80px;
background-image: url(podcast-icon.gif);
background-repeat:no-repeat;
}
Then use the following to link to the MP3 file:
<a class="podcast" href="file.mp3">file (MP3)</a>
Thanks to Drew for pointing me to the icons, and of course to Tim for creating them.