Linklerin Altındaki Çizgiler Kalksın İstiyorum

Linklerin Altındaki Çizgiler Kalksın İstiyorum
ÇÖZÜM=
style.css yi aç
Kod: (bul)
/* Normal, standard links. */
a:link
{
color: #00004e;
FONT: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
a:visited
{
color: #00004e;
FONT: verdana, geneva, lucida, ‘lucida grande’, arial, helvetica, sans-serif;
}
a:hover
{
color: #ff4400;
}
_________________________________________
Kod: (değiştir)
/* Normal, standard links. */
a:link
{
color: #00004e;
FONT: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
}
a:visited
{
color: #00004e;
FONT: verdana, geneva, lucida, ‘lucida grande’, arial, helvetica, sans-serif;
text-decoration: none;
}
a:hover
{
color: #ff4400;
text-decoration: underline;
}