Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
mfv84 #1
problem with links on CSS and IE
Hi
i styled the links of my webpage like this:
a:link {
color: #663333;
}
a:visited {
color: #663333;
}
a:hover {
color: #F4EFC9;
}
a:active {
color: #663333;
}
when i preview it on Firefox, when i roll over the mouse on some images the
borders change as they should, but when i use IE nothing happens, the borders
just stay purple!
how can i make it do what i want it to do?
Thanks
mfv84 Guest
-
Hyperlink problem - many links, but same URL
I'm having a problem doing something that seems very simple. I'm using InDesign CS2. I am trying to create a PDF document, built in InDesign and... -
:Mechanize ->links() problem
> Question: It is an array reference not an array. Try this: for(@{$agent->links()}) { print "-$_-\n"; } or my @LINKS =... -
WWW::Mechanize ->links() problem
Question: I'm trying to use the links(); function which in the man page says "returns a list of the links found in the last fetched page. "... -
Problem with links?
I had a site more or less made using a template and a series of links to my different html files. Everything always worked perfectly, the links were... -
problem with different css styles with different a:links in one doc.
I use two different css style sheets in one document. Each with different a:link, a:hover, etc. values. But when I apply different styles from the... -
rilkesf #2
Re: problem with links on CSS and IE
IE has a problem with inheriting CSS styles when the <img> tag is nested within
an <a> tag. Basically, you just need to define the default style of the <img>
tag to be the same as the normal style of the <a> tag, then define the hover
state for the image. Adding the following two rules should do it:
a img { border-color: #663333; }
a:hover img { border-color: #F4EFC9; }
For a more complete description, check this site out:
[url]http://rob.rnovak.net/content/archives/Individual/000039.php[/url]
rilkesf Guest



Reply With Quote

