I'm not sure why I am getting an error
My code is as follows:
#header {
background: #252525 !important;
.toplinks {
background-color: #333333;
}
}
I get errors where I have the .toplinks part, saying they need to be separate, but in the website's css this is how it is written. How else can I do this?
#header {
background: #252525 !important;
.toplinks {
background-color: #333333;
}
}
I get errors where I have the .toplinks part, saying they need to be separate, but in the website's css this is how it is written. How else can I do this?
Comments