You have to comment the actual line of code out. Example:
div {
background-color: blue;
/* background-color: red; */
}
In this example, the div element will have a background color of blue because the other line, which would change the color to red, is commented out and won’t be interpreted as code by the computer.
You’re requested to comment out the background styling. This simply means you should make the background-color and it’s value a comment like this:
Mod edit: removed
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.