Line Under my Links!?

Discussion in 'HTML & Website Design' started by surfer33, Aug 7, 2007.

  1. #1
    surfer33, Aug 7, 2007 IP
  2. jmhyer123

    jmhyer123 Peon

    Messages:
    542
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #2
    in the css use
    a {
    text-decoration: none;
    }
    Code (markup):
    it is by default set to text-decoration: underline but if you set it to text-decoration: none it will take away the underline from your links.

    Hope this helps!
     
    jmhyer123, Aug 7, 2007 IP
  3. surfer33

    surfer33 Banned

    Messages:
    212
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    tank very much
     
    surfer33, Aug 7, 2007 IP
  4. surfer33

    surfer33 Banned

    Messages:
    212
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    where i must insert this code?
    in the css or head or body?
     
    surfer33, Aug 7, 2007 IP
  5. jmhyer123

    jmhyer123 Peon

    Messages:
    542
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #5
    In the css, I don't know if you have direct access to the css stylesheet for the blog (because it's on blogspot) if not put it in the head as

    
    <style>
    a {
    text-decoration: none;
    }
    </style>
    
    Code (markup):
    that goes between the <head> and </head> tags.
     
    jmhyer123, Aug 7, 2007 IP
  6. Mars-X12

    Mars-X12 Banned

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    it's css..
     
    Mars-X12, Aug 7, 2007 IP