Totally baffled! I\'ve tried rewriting the text-decoration: none
line several different ways. I also managed to re-size the text by targeting it but the t
Add this statement on your header tag:
<style>
a:link{
text-decoration: none!important;
cursor: pointer;
}
</style>
I just did it the old way i know that its not right but its a quick fix.
<h1><a href="#"><font color="#FFF">LINK</font></a></h1>
if you want a nav bar do
ul{ list-style-type: none; } li{text-decoration: none;
with the < a > tag:
a:link {text-decoration: none}
Use CSS Pseudo-classes and give your tag a class, for example:
<a class="noDecoration" href="#">
and add this to your stylesheet:
.noDecoration, a:link, a:visited {
text-decoration: none;
}
try adding this to your stylesheet:
a {text-decoration:none;}
I have an answer:
<a href="#">
<div class="widget">
<div class="title" style="text-decoration: none;">Underlined. Why?</div>
</div>
</a>
It works.