-8

I'm making a website at the moment but my underline of the link in my navigation menu won't go away.

HTML:

<header>


<ul>
  <li class="first-nav"><a href="home.html">HOME</a></li>
  <li><a href="portofolio.html">PORTOFOLIO</a></li>
  <li><a href="contact.html">CONTACT</a></li>
 </ul>
</header>

CSS:

Robert Karl
  • 7,598
  • 6
  • 38
  • 61
DlBreda
  • 77
  • 1
  • 1
  • 10
  • 1
    What does this have to do with either JavaScript or jQuery? Can't you simply remove the text-decoration CSS? – j08691 Dec 29 '14 at 21:30
  • [text-decoration](http://bit.ly/1zdJvUY) – u.k Dec 29 '14 at 21:31
  • look at the css a: tags at the bottom of my css http://nanocluster.umeche.maine.edu/main.css you want text decoration: none – j0h Dec 29 '14 at 21:32

1 Answers1

4

simple add this css rule

a{text-decoration:none}

using inline method

<a href="http://yoursite.com/" style="text-decoration:none">link</a>
sanoj lawrence
  • 951
  • 5
  • 29
  • 69