Link Question

When you make a link on yur banner or w/e you made is there a way to take off the line under the thingy that makes link ?

if youre using a css yes you can control what happens on the over state of a link if your talking about text links

put this inbetween your head tags

<style type="text/css">
A:link {text-decoration: none;}
A:visited {text-decoration: none;}
A:active {text-decoration: none;}
A:hover {text-decoration: none;}
</style>