View Full Version : Image help
HLA91
05-30-2007, 10:52 PM
I have been making my website but I am having trouble, does anyone know how to remove the underline from links without using a style sheet?
Many thanks
HLA91
Tehaxor
05-30-2007, 10:59 PM
Dunno how that could be done without CSS, but with it the solution is text-decoration:none.
And why you would want to do that without CSS anyway?
effpeetee
05-30-2007, 11:18 PM
I have been making my website but I am having trouble, does anyone know how to remove the underline from links without using a style sheet?
Many thanks
HLA91
This may help you.
<style type="text/css">
A:link { color: white}
A:visited { color: white}
A:hover { color: orange}
A {text-decoration:none;font-family:"Arial Bold",sans-serif;}
</style>
Put it in the <Head>
Change what you need.
It works for me
effpeetee
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.