Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
UncleBudd #1
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
-
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... -
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... -
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... -
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? -
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... -
Murray *TMM* #2
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
-
UncleBudd #3
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
-
Murray *TMM* #4
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
-
UncleBudd #5
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
-
Murray *TMM* #6
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
-
UncleBudd #7
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
-
Murray *TMM* #8
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



Reply With Quote

