Forum Moderators: not2easy
I design my sites on a Mac using Dreamweaver, but I always test using Windows browsers. On the Mac side of things, I find my rollover text to be very unpredictable. Sometimes it works. Sometimes it doesn't. I thought for awhile that the problem was isolated to links with custom classes attached, but experimentation shows this isn't always the case.
Things are a bit more predictable under Windows with MSIE 5.5, but I still have problems getting a hover color to show on a link that has been visited. Am I wrong here, or isn't the hover color supposed to show on a mouseover even if the link is visited?
I'm hoping someone here has some helpful tips up their sleeve as I haven't had much luck finding info searching the forum archives.
TIA,
Which leads me to hazard a guess that you have a cascading issue. You'll need to root through your CSS to determine what styles above the A element are in the driver's seat.
If the problem is inconsistent then I have no idea what the problem might be other than typos within your code (calling a style by class when it's defined as an ID).
Here is the CSS style sheet of a troublesome site I'm working on now:
h1 { font-family: Arial, Helvetica, sans-serif; font-size: 18px; line-height: 18px; font-weight: bold; color: #000000}
p { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color: #000000}
.p-expanded { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px; color: #000000}
h2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 14px; font-weight: bold; color: #000000}
ul { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color: #000000; list-style-position: outside; list-style-type: square}
a:hover { color: #993300; text-decoration: none; font-family: Arial, Helvetica, sans-serif}
a:link { color: #1F1BAA; text-decoration: underline; font-family: Arial, Helvetica, sans-serif}
.smalltext { font-family: Arial, Helvetica, sans-serif; font-size: 10px; line-height: 12px; font-weight: normal}
h3 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 12px; font-weight: bold}
.h3-table { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 12px; font-weight: bold; color: #000000}
a:visited { color: #1F1BAA; text-decoration: underline}
It is all generated by Dreamweaver 4. Maybe I should seriously consider upgrading to MX soon...
Nick