• Embedded links do not display properly in Firefox 2.0.0.3.

    In other versions and in IE, my embedded links show up with the Red underscored text I have it set up to do. On hover the links turn bold red and underscore disappears. but in Firefox 2.0.0.3 the links are no different from surrounding text until hover when they turn bolded gray.

    Any ideas on how to “fix” it?

Viewing 7 replies - 1 through 7 (of 7 total)
  • How about a link? Otherwise, you won’t et many answers.

    Thread Starter oceanguy

    (@oceanguy)

    Go through your style.css. Change the text-decoration in `#r_sidebar a, a:visited { color: #000000;
    text-decoration: none;
    }`
    from “none” to “underline”.

    You may not like what that does to the a:visited style so you may want to style that separately.

    Thread Starter oceanguy

    (@oceanguy)

    In some posts, SOME links work properly. But at https://oceanguy.com/?p=1834 none of the links do.

    Thread Starter oceanguy

    (@oceanguy)

    lexhair, that is the way it is set up. ONLY in Firefox version 2.0.0.3 does it act differently. I’ve contacted the Mozilla folks too.

    In FF 1.5.0.11 they are OK. So, maybe it’s the browser…

    Or, make sure you put the link selectors in the proper order: link, visited, hover, active. If you do not list all of these properties, or list them out of order, you might see some unintended effects.

    What moshu said. I can already see that you have your links out of order (you have “a, a:visited” and then “a:hover” – whic will cause things not to work as you want them to.)

    LoVe HAte

    a
    a:link
    a:visited
    a:hover
    a:active

    MUST be listed in that order.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Embedded Links in Firefox 2.0’ is closed to new replies.