I'm having a tough time removing the border from a linked image. My html looks like this:
Code:
<a href="home.html">
<img id="logo" src="Images/logo.bmp" alt="Dday9 Logo">
So far what I've tried is:
Code:
#logo img
{
	border: 0px;
	
}
but that doesn't seem to work.