Pessoal, estou com uma dúvida em uma propriedade das tags <a>. :blink: Usando CSS, como eu altero estas bordas que ficam sempre que clico um link? no meu caso o código html da tag "<a>" é: <div class="thumb-wrapper">
<div class="thumb">
<a href="fotos/eventos/1.jpg" rel="lightbox[eventos]" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('thumb_eventos_1','','thumbs/eventos/1_hover.jpg',1)">
<img src="thumbs/eventos/1.jpg" name="thumb_eventos_1" width="147" height="147" border="0">
</a>
</div>
</div>
----------------------EDIT---------------------
Meu CSS referente a ests links está:
a:link {
text-decoration: none;
border: 0px;
}
a:visited {
text-decoration: none;
border: 0px;
}
a:hover {
text-decoration: none;
border: 0px;
}
a:active {
text-decoration: none;
border: 0px;
}
body{
margin: 0px;
background-color:#1A1A1E;
}
body,td,th {
font-family: "Verdana", Geneva, sans-serif;
color: #B9B9B9;
}
a{ border:0px;}
img { border: 0px;}