I don’t really understand how to complete this challenge. I’ve tried a variety of solutions and nothing seems to work. I’m using beta.freecodecamp so when I try to get a hint it takes me to a 404 page and I can’t find anyone else having submitted a problem with this challenge so I’m really stuck.
That sounds so simple. The question is: Why these sentences do not change their colors? you are used as “RED” colors and they don’t change “but works”?
Took me a while to figure out this problem but I have a solution to this. When i figures it out I was so mad because It took me a couple hours. Here it is ; take a look at the quotes (") vs (”).
This is correct.
I was hesitating at first, but it let me pass the test. In my case, I erased the entire 300px media quiery, and copy paste those grid-template-columns and rows to the 400px, also replacing the advert to header and footer.
from this:
@media (min-width: 300px){
.container{
grid-template-columns: auto 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
“advert header”
“advert content”
“advert footer”;
}
}
to this:
@media (min-width: 400px){
.container{
grid-template-columns: auto 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
“header header”
“advert content”
“footer footer”;
}
}
the end result was a bit messy, since the header and footer didnt occupy the top and bottom