Eliminating Text Decoration for Firefox Browsers

Discussion in 'HTML & Website Design' started by christian231, Sep 14, 2007.

  1. #1
    I use Frontpage for my website design, and when I create a hyperlink and remove the underline text decoration, it looks fine in IE, but in Firefox, it still shows the link underlined. I've checked the code and it says Text Decoration=none. Any way to get rid of that underline for Firefox browsers?
     
    christian231, Sep 14, 2007 IP
  2. my44

    my44 Peon

    Messages:
    722
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #2
    By default, FrontPage will create this code below. Despite specifying your text-decoration:none, the underline will still appear on Firefox.
    <a href="link.html"><span style="text-decoration: none">YOUR LINK</span></a>
    Code (markup):
    To fix that, you will need to modify the code into something like this:
    <a style="text-decoration: none" href="link.html">YOUR LINK </a>
    Code (markup):
     
    my44, Sep 14, 2007 IP
  3. christian231

    christian231 Well-Known Member

    Messages:
    1,509
    Likes Received:
    86
    Best Answers:
    0
    Trophy Points:
    140
    #3
    Thanks..i'll give it a try. :)
     
    christian231, Sep 14, 2007 IP