I've been trying to remove an ugly underline from a webpage but for some reason it just won't go away.
I've tried using text-decoration:none;
and color: #FFFFFF;
to no avail.
Original css:
#noday {
color: #ECECEC;
font-family: "Times New Roman",Times,serif;
font-size: 1em;
}
The snippet of code:
<a href="http://www.example.com/content/" target"_blank"><div id="noday"><br><br>Random text here</div></a>
Real example: http://jsfiddle.net/c0c6g4rd/
I've looked at: Remove stubborn underline from link but it hasn't helped :/