diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json
index 6449d7e04a..af1ec05634 100644
--- a/challenges/01-responsive-web-design/applied-visual-design.json
+++ b/challenges/01-responsive-web-design/applied-visual-design.json
@@ -1036,41 +1036,15 @@
"challengeType": 0,
"translations": {}
},
- {
- "id": "587d781d367417b2b2512ac7",
- "title": "Adjust the Color of an Anchor Tag",
- "description": [
- "You can adjust the text color of any text in an element with the color
property.",
- "
color
property of the anchor (a
) tag to #000
(black)."
- ],
- "challengeSeed": [
- "",
- "CatPhotoApp"
- ],
- "tests": [
- "assert($('a').css('color') == 'rgb(0, 0, 0)', 'message: The color
of the anchor tag text should be black.')"
- ],
- "solutions": [],
- "hints": [],
- "type": "waypoint",
- "releasedOn": "Feb 17, 2017",
- "challengeType": 0,
- "translations": {}
- },
{
"id": "587d781d367417b2b2512ac8",
"title": "Adjust the Hover State of an Anchor Tag",
"description": [
"This challenge will touch on the usage of pseudo-classes. A pseudo-class is a keyword that can be added to selectors, in order to select a specific state of the element.",
- "Following from the previous challenge, the styling of the anchor tag can be changed for its hover state using the :hover
pseudo-class selector. Here's an example that changes the color of the anchor tag to red during its hover state:",
+ "For example, the styling of an anchor tag can be changed for its hover state using the :hover
pseudo-class selector. Here's the CSS to change the color
of the anchor tag to red during its hover state:",
"a:hover {", "
color: red;
}
a
tag's CSS so that when the user hovers over it, the color
is blue."
+ "The code editor has a CSS rule to style all a
tags black. Add a rule so that when the user hovers over the a
tag, the color
is blue."
],
"challengeSeed": [
"