Help with links in footer and header

3 replies
  • WEB DESIGN
  • |
Hey guys,

How would I remove the underline on my links in the footer and header?
HTML Code:
hxxp://freematinee.com/
Header Links
Footer Links

I'd also like to make these links blue in color. I noticed when I used the </div> tag after the 'Advertise with Us' link it makes the following links after it blue in color, but they fall too far below.

I'm sure this is simple .html. If someone could help that would be deeply appreciated.

Thanks!
#footer #header #links
  • Use this inline css code:

    <A STYLE="text-decoration:none" HREF="link.html">
    Text for link goes here</A>

    That will get rid of the underline.
    Signature
    Financial Thing: Peer to Peer Lending Reviews
    Poker Tilt : The Dutch Boyd Story
    {{ DiscussionBoard.errors[1874473].message }}
    • Profile picture of the author otherwhirl
      Thanks! Worked.

      Tell me , how can I make those links blue in color without the links dropping to the bottom of the footer? In other words, when I don't use the </div>tag the color stays the same and it doesn't drop to the bottom of the theme.
      Originally Posted by Orlando Web Design View Post

      Use this inline css code:

      <A STYLE="text-decoration:none" HREF="link.html">
      Text for link goes here</A>

      That will get rid of the underline.
      {{ DiscussionBoard.errors[1874557].message }}
      • Profile picture of the author j-spratt
        Here is you link with no line

        <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Untitled Document</title>
        <STYLE type="text/css">
        <!--
        A:link {text-decoration: none;}
        A:visited {text-decoration: none;}
        -->
        </STYLE>

        </head>

        <body>
        <a href="#">link with no line</a>
        </body>
        </html>
        {{ DiscussionBoard.errors[1875083].message }}

Trending Topics