View Full Version : Why are my links underlined?


kaylee_24
04-24-2004, 02:00 PM
That's my code what's on the site, but I can't see the reason why they are undelined.



<body bgcolor="#FFFFFF" text="#9966ff" link="#9966ff" vlink="#9966ff" alink="#9966ff">




<style type="text/css">
td,p,body{color:#9966ff;font:10pt verdana}
</style>

<body background="http://img8.photobucket.com/albums/v28/kaylee_24/hearts.gif">



<a href="main.html" target="main">Home</a>
<br>
<a href="aboutme.html" target="main">About Me!</a>
<br>
<a href="credits.html" target="main">Credits</a>
<br>
<a href="easter.html" target="main">My Easter Pics!</a>
<br>
<a href="history.html" target="main">Site History</a>

<p>

<a href="glitter.html" target="main">Glitter Sigs</a>

<br>

pb&j
04-24-2004, 02:19 PM
by default, links are underlined.
you have not told the links to NOT be underlined.

change this part...
<body bgcolor="#FFFFFF" text="#9966ff" link="#9966ff" vlink="#9966ff" alink="#9966ff">




<style type="text/css">
td,p,body{color:#9966ff;f ont:10pt verdana}
</style>

<body background="http://img8.photobucket.com/albums/v28/kaylee_24/hearts.gif">


to this...

<html>
<head>
<title> title of your page here </title>
<style type="text/css">
td,p,body{color:#9966ff;f ont:10pt verdana}
a {text-decoration:none;}
</style>
</head>
<body bgcolor="#FFFFFF" text="#9966ff" link="#9966ff" vlink="#9966ff" alink="#9966ff" background="http://img8.photobucket.com/albums/v28/kaylee_24/hearts.gif">

you can use the css part to specify your link colors, background color, and background images as well if you like, but that should fix up your problem for now.

at the end of your coding, you should have...
</body>
</html>

donnamarie
04-24-2004, 03:22 PM
you can also put style"text-decoration:none" after each ling, before the >

kaylee_24
04-24-2004, 04:07 PM
Thanks VERY much :) It's very much appriciated!