elliottbenzle
asked on
a:link css style not changing color of text in Chrome
On my site most of the links are black, but one at the bottom should be blue. I've applied
.bluelink a:link {
text-decoration: underline;
color: #03F; }
to it, and the underline is working, but for some reason the link still appears black. It seems fine in Firefox.
The page is here: cmr.osu.edu and the link is near the bottom called "providing feedback here"
any ideas what the problem is?
Thanks
.bluelink a:link {
text-decoration: underline;
color: #03F; }
to it, and the underline is working, but for some reason the link still appears black. It seems fine in Firefox.
The page is here: cmr.osu.edu and the link is near the bottom called "providing feedback here"
any ideas what the problem is?
Thanks
The easiet way to figure it out if you are using IE8 is by using developer tools from the Tools Menu or Pressing F12. You will be able to see what css is being applied to the link and fix the issue from there.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Hmm. I'm still seeing it as black, but if everyone else sees blue then I guess it's ok.