IE 6.0 links don't hover properly.

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default IE 6.0 links don't hover properly.

    In Internet Explorer 6.0 I am having trouble with links that have been reduced
    in size. They don't respond to CSS style declarations for hovering. The style
    is defined to underline and change color of links when hovering, but I can't
    get this to happen. I have tried increased line spacing and it doesn't make
    any difference. I do not have this problem in NN 7 or Firefox.

    I don't have IE 5.5 anymore. Microsoft kindly deleted it without asking when
    I installed 6.0.

    Does anyone have any ideas about what I am doing wrong?

    UncleBudd Guest

  2. Similar Questions and Discussions

    1. Links do not show up properly in FireFox or Explorer
      I am designing a website, www.fiszerconcepts.com and the links within Dreamweaver and locally on my machine show up in 14pt. font size which is the...
    2. PDF urls/links javascript on hover
      I have a Acrobat PDF (6.0 professional) document with url's in it. Coloring them differently spoils the look of the document. Hence, I want them to...
    3. Advice needed - Hover Menu for individual HTML links
      Hi, I have been trying to use some free Java script from Open Cube and adapt it for use on our webpage. It's a great menu but I am not...
    4. links in text field - change color on hover
      is there a way to make the links in a text field have a css equivalent of a:hover?
    5. CSS for links (underline on hover)
      I've recently discovered the pre-installed CSS Styles in DMX. I really like following effect: A stationary link isn't underlined (I can...
  3. #2

    Default Re: IE 6.0 links don't hover properly.

    Show me your CSS, please. Or just make sure that your pseudo-classes are
    defined in this order -

    link-visited-hover-active

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "UncleBudd" <webforumsuser@macromedia.com> wrote in message
    news:diojhj$d66$1@forums.macromedia.com...
    > In Internet Explorer 6.0 I am having trouble with links that have been
    > reduced
    > in size. They don't respond to CSS style declarations for hovering. The
    > style
    > is defined to underline and change color of links when hovering, but I
    > can't
    > get this to happen. I have tried increased line spacing and it doesn't
    > make
    > any difference. I do not have this problem in NN 7 or Firefox.
    >
    > I don't have IE 5.5 anymore. Microsoft kindly deleted it without asking
    > when
    > I installed 6.0.
    >
    > Does anyone have any ideas about what I am doing wrong?
    >

    Murray *TMM* Guest

  4. #3

    Default Re: IE 6.0 links don't hover properly.

    My CSS is:

    .tinyLink {
    /* A small light gray page link, hovers in white. */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-style: normal;
    line-height: 9px;
    font-weight: 500;
    font-variant: normal;
    color: #CCCCCC;
    text-decoration: none;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    }
    a:hover.tinyLink {color: #FFFFFF;
    text-decoration: underline;
    }

    My HTML is:

    <a onClick="showChart('index_chemicals_sch1.html')" class="tinyLink"
    title="CWC Schedule One Chemicals">Schedule One Chemicals</a>

    Unfortunately the Web site isn't available right now. It will be available in
    a couple of hours.

    Thanks for your interest,

    Michael (UncleBudd)



    UncleBudd Guest

  5. #4

    Default Re: IE 6.0 links don't hover properly.

    a:hover.tinyLink {color: #FFFFFF;
    text-decoration: underline;
    }

    This should be this -

    a.tinyLink:hover {color: #FFFFFF;
    text-decoration: underline;
    }


    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "UncleBudd" <webforumsuser@macromedia.com> wrote in message
    news:diomkg$hsv$1@forums.macromedia.com...
    > My CSS is:
    >
    > .tinyLink {
    > /* A small light gray page link, hovers in white. */
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 8px;
    > font-style: normal;
    > line-height: 9px;
    > font-weight: 500;
    > font-variant: normal;
    > color: #CCCCCC;
    > text-decoration: none;
    > letter-spacing: .12em;
    > text-align: center;
    > text-transform: uppercase;
    > cursor: pointer;
    > }
    > a:hover.tinyLink {color: #FFFFFF;
    > text-decoration: underline;
    > }
    >
    > My HTML is:
    >
    > <a onClick="showChart('index_chemicals_sch1.html')" class="tinyLink"
    > title="CWC Schedule One Chemicals">Schedule One Chemicals</a>
    >
    > Unfortunately the Web site isn't available right now. It will be
    > available in
    > a couple of hours.
    >
    > Thanks for your interest,
    >
    > Michael (UncleBudd)
    >
    >
    >

    Murray *TMM* Guest

  6. #5

    Default Re: IE 6.0 links don't hover properly.

    I really appreciate your attention, but unfortunately I made the suggested
    change and it didn't work. What is really confusing is that this link does
    work in both Firefox and IE,

    .creditTextLink {
    /* A small blue link. */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    font-style: normal;
    line-height: 9pt;
    font-weight: 700;
    font-variant: normal;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    }
    a.creditTextLink:hover {
    text-decoration: underline;
    }


    UncleBudd Guest

  7. #6

    Default Re: IE 6.0 links don't hover properly.

    What is it that is not working for you and in which browser?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "UncleBudd" <webforumsuser@macromedia.com> wrote in message
    news:diot83$r67$1@forums.macromedia.com...
    >I really appreciate your attention, but unfortunately I made the suggested
    > change and it didn't work. What is really confusing is that this link
    > does
    > work in both Firefox and IE,
    >
    > .creditTextLink {
    > /* A small blue link. */
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 8pt;
    > font-style: normal;
    > line-height: 9pt;
    > font-weight: 700;
    > font-variant: normal;
    > color: #FFFFFF;
    > text-decoration: none;
    > cursor: pointer;
    > }
    > a.creditTextLink:hover {
    > text-decoration: underline;
    > }
    >
    >

    Murray *TMM* Guest

  8. #7

    Default Re: IE 6.0 links don't hover properly.

    It works fine in Firefox and NN 7.0, but in IE 6.0 the hover styles don't come
    up. No underline or chage to white. The pointer comes up and the link works.
    I tried moving the "cursor:pointer;" to the hover portion of the style
    declarations, but that only made the pointer stop coming up along with the
    other styles declared for hovering.

    Michael

    UncleBudd Guest

  9. #8

    Default Re: IE 6.0 links don't hover properly.

    You have the advantage of being able to see the whole page. Can you post
    that link, please?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "UncleBudd" <webforumsuser@macromedia.com> wrote in message
    news:diovv2$1nn$1@forums.macromedia.com...
    > It works fine in Firefox and NN 7.0, but in IE 6.0 the hover styles don't
    > come
    > up. No underline or chage to white. The pointer comes up and the link
    > works.
    > I tried moving the "cursor:pointer;" to the hover portion of the style
    > declarations, but that only made the pointer stop coming up along with the
    > other styles declared for hovering.
    >
    > Michael
    >

    Murray *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139