Click to See Complete Forum and Search --> : Links - Easy question


chriscam19
01-10-2003, 12:32 AM
Ok you know when you make a link in html you get your text with a line representing a link? Well how do i make a link without the line? Sometimes the
line looks tacky!

khalidali63
01-10-2003, 01:35 AM
Please correct me if I am wrong.
You meant the line that appears under a link?

if thats what you want to remove,you only need to add a style script in your head tags

Khalid


<head>
<title>Untitled</title>
<style type="text/css">
a{
text-decoration:none;
}
</style>
</head>

jdavia
01-10-2003, 01:37 AM
<style>
<!--
a {text-decoration: none}
-->
</style>

Put it above the closing head tag.

luc
01-10-2003, 01:40 AM
try CSS with 'text-decoration:none'