CSS Problem

liunx

Guest
Hi<br />
<br />
I am using a style sheet to eliminate the lines that appear under text links. However when I load the page the lines still show up. I noticed that after I click on the links the lines will go away. But I want them to always be off.<br />
<br />
To see this my webpage is at <!-- m --><a class="postlink" href="http://www.alexalapatt.com/main.html">http://www.alexalapatt.com/main.html</a><!-- m --> and the style sheet is at<br />
<!-- m --><a class="postlink" href="http://www.alexalapatt.com/default.css">http://www.alexalapatt.com/default.css</a><!-- m --><br />
<br />
Thanks for any help.<br />
<br />
Alex<!--content-->Try taking out the STYLE tags and putting in a base A specification like so...<br />
<br />
body {font-family: arial, helvetica, sans-serif; font-size: 10px;}<br />
td {font-family: arial, helvetica, sans-serif; font-size: 10px;}<br />
a {text-decoration: none;}<br />
a:link {color: F76B08;}<br />
a:visited {color: FFAD73;} <br />
a:active {color: #ffffff;} <br />
a:hover {color: #ffffff;}<!--content-->
 
Back
Top