# Text links without lines in html ... how?

**URL:** https://forum.kirupa.com/t/text-links-without-lines-in-html-how/461
**Category:** random
**Created:** [July 17, 2002, 11:04pm UTC](https://forum.kirupa.com/t/text-links-without-lines-in-html-how/461 "2002-07-17T23:04:37Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![time2design](https://avatars.discourse-cdn.com/v4/letter/t/85e7bf/32.png) [@time2design](https://forum.kirupa.com/u/time2design)
#### Post date: [July 17, 2002, 11:04pm UTC](https://forum.kirupa.com/t/text-links-without-lines-in-html-how/461/1 "2002-07-17T23:04:37Z")

</div>

I can’t figure out how to make text links without the lines underneath them. Does this make sense?

Like when you see a site that has a menu of text that even changes color on a rollover but it’s editable text, not a graphic link.

Does this have something to do with DHTML/CSS?

Thanks in advance.

t2d (\<— frustrated!)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 17, 2002, 11:13pm UTC](https://forum.kirupa.com/t/text-links-without-lines-in-html-how/461/2 "2002-07-17T23:13:15Z")

</div>

Its Cascading Style Sheets (CSS):

```php
<style type="text/css">
<!--
a:link {color: #FFFFFF; text-decoration: none}
a:active {color: #FFFFFF; text-decoration: none}
a:visited {color: #FFFFFF; text-decoration: none}
a:hover {color: #FFFFFF; text-decoration: none}
//-->
</style>

```

Enter this inbetween the **head** tags!

For **text-decoration** either use _ **’none, underline, italic, bold, ect.'** _ and if you have any more questions don’t hesitate to ask!

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 17, 2002, 11:49pm UTC](https://forum.kirupa.com/t/text-links-without-lines-in-html-how/461/3 "2002-07-17T23:49:09Z")

</div>

Thank you SO much. That was driving me crazy!

I’ll give it a try as soon as this Aleve kicks in. 🙂

t2d
