This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by codelearner12321
over 10 years

15/23 wrong color?!

CSS Tab: .link { text-decoration:none; color: #008B45; } .hover { color:#00FF00; } .visited { color:#EE9A00; }

Problem: Oops, try again! Did you remember to set your a:link to the color #008B45? But #008B45 is obviously there… I’m 98% percent done with everything but i need this one thing and it wont let me get the last 2% (ARGH!!) should i try a different browser (the only other browser i have is chrome soooooo yea….)

Answer 529408e1548c3590f7000c71

1 vote

Permalink

i think there’s something wrong with their site tonight, but I will say that as per below, when I removed the space after the semicolon in a:link on the css page, it accepted my answer. I did the same thing with a:hover and a:visited a:link { text-decoration: none; color: #008B45; }

points
Submitted by 340w135
over 10 years

Answer 5292e7e3abf8217cf800066f

0 votes

Permalink

(Something else: I am using firefox if that helps with anything……)

points
Submitted by codelearner12321
over 10 years

Answer 5294ecf1f10c6003950006d6

0 votes

Permalink

I’ve also tried all kinds of spacing tactics… nothing has gotten me around the error message.

points
Submitted by Fortage Rick
over 10 years

Answer 5294f282abf821695c000946

0 votes

Permalink

Try this………In CSS a:link{…. : ….. ; ……. : ……. } Use selector (a) colon (:) pseudo-class selector, BUT drop the second colon as we were told to use. Well, my notes say I’m to use a second : after the word link.

points
Submitted by Fortage Rick
over 10 years

Answer 52952a5dabf82191c4000153

0 votes

Permalink

Thanks to everyone who helped i (i don’t how how but) fixed the issues…..

points
Submitted by codelearner12321
over 10 years

Answer 5295ff7680ff33a39b001e01

0 votes

Permalink

Remove “link” put “A” instead. like this “.link { text-decoration:none;” Your version. And heres mine “a { text-decoration:none;”

points
Submitted by isma khalili
over 10 years