Fri, 2005-03-18 16:59
Hi, quick question. when I put a link on my logo to my home page it seems to put a border around it. I've tried text-decoration: none; and this doesn't seem to do anything? what can I do to get rid of it?
thanks
larmyia
Fri, 2005-03-18 18:15
#1
<a> link on logo
Did you try:
a img { border: 0; }
?
Fri, 2005-03-18 18:23
#2
<a> link on logo
Or :
img {border:none;}
Hugo.
Fri, 2005-03-18 19:05
#3
<a> link on logo
ah! I see my mistake. I had .banner a {} and I needed .banner img {}
many thanks!
larmyia[/code]
Fri, 2005-03-18 20:33
#4
<a> link on logo
Thanks for the assist, "Huges."