Thank you. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Try changing this:<br /><br />
<br />a:link { <br /> color: #FFFFFF;<br /> background: none;<br />}<br />a:visited { <br /> color: #FFFFFF;<br /> background: none;<br />}<br />a:active {<br /> color: #FFFFFF;<br /> background: none;<br />}<br />a:hover { <br /> color: #FF0000;<br /> background: none;<br />}<br /><br /><br />to:<br /><br />
<br />a:link { <br /> color: #FFFFFF;<br /> background: none;<br /> text-decoration: none;<br />}<br />a:visited { <br /> color: #FFFFFF;<br /> background: none;<br /> text-decoration: none;<br />}<br />a:active {<br /> color: #FFFFFF;<br /> background: none;<br /> text-decoration: none;<br />}<br />a:hover { <br /> color: #FF0000;<br /> background: none;<br /> text-decoration: none;<br />}<br /><br /><br /><br />Might also need to add that bit into here as well:<br />
<br />.onbody{<br /> color: #000000;<br /> background: none;<br />}<br />.onbody a:link {<br /> color: #FFFFFF;<br /> background: none;<br />}<br />.onbody a:visited {<br /> color: #FFFFFF;<br /> background: none;<br />}<br />.onbody a:active {<br /> color: #FFFFFF;<br /> background: none;<br />}<br /><br /><br /><img src="/forum/images/graemlins/smile.gif" alt="" />