The default link color is blue. How to remove the default link color of the html hyperlink tag ?
you can do some thing like this:
a { color: #0060B6; text-decoration: none; } a:hover { color:#00A0C6; text-decoration:none; cursor:pointer; }
if text-decoration doesn't work then include text-decoration: none !important;