I cannot figure out how to get rid of the border around my button image. I got rid of the blue border by setting border=0, but I am still getting a purple border around them after I click them until the page loads then it goes away.
Website if you want to see what I'm talking about:
Here is the CSS I currently have that isn't working:
Any help would be appreciated. Thanks in advance.
Website if you want to see what I'm talking about:
Here is the CSS I currently have that isn't working:
Code:
a img {
border: none;
border-color: none;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
outline: none;
outline-color: none;
}
Comment