Tell us what’s happening:
Describe your issue in detail here.
From my understanding, I have put the comment out the line but it still doesnt´t work; i have tried all possible options that I could think of and nothing seems to work. TIA!
do you see the very first line in the css file?
it says: /* file: styles.css */
This is a comment.
A comment is something that the browser will ignore and not try to understand.
You can put whatever you want inside it and the browser will ignore it.
People use comments to remind themselves of why they wrote the code.
They also may use them for debugging. (If you suspect that a line of code is causing a problem you can try to comment it out to see if doing so changes the results)
So, you want to comment out this line in the code: background-color: burlywood;
As I mentioned, to make the code commented out simply surround it with the special characters /* on the right hand side and */ on the left hand side. (Refer to the examples you have been shown)