Learn Basic CSS by Building a Cafe Menu - Step 79

Step 79

The default color of a link that has not yet been clicked on is typically blue. The default color of a link that has already been visited from a page is typically purple.

To make the footer links the same color regardless if a link has been visited, use a type selector for the anchor element (a) and use the value black for the color property.

Here’s my current code for this problem which is wrong.
footer a {
color: black;
}

Please don’t delete the link to the Step!

Can you say more about what’s going wrong and what about the instructions has you stuck?

1 Like

I just do not know what else I can try. Im pretty new at coding.

Can you provide the link to the Step? Can you say anything about what words or phrases in the instructions you don’t understand?

1 Like

Found the link to the Step:

And found the issue. This isn’t a type selector for an a element. Its a different CSS selector.

2 Likes

Just focus on the anchor element. There is no reason to type footer.

1 Like

Thanks so much! Got it!

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.