I'm having another problem with code. Specifically, all my linked images have a blue/purple border around them (depending on the browser) and I can't for the life of me figure out how to change the color (I'd actually prefer no color but black will do in pinch).
The comic I'm using to work this out is actually a "dummy" comic set up to practice code. It's here:
Up in the css area, you need to add a line that says:
img {
border-style: none ;
}
This will make it apply to every image on the page, not just the linked images, so if there are images you want to have a border we need to try something different. :]