I took a menu from the internet that uses the bootstrap framework, when it is on a screen larger than 768px the menu color was initially light gray, I changed to dark gray, but when the screen is smaller than 768px, the menu turns gray Of course again, I would need to overwrite the place that makes the menu go back to light gray, but I do not know how to use the @media
tag (if that's what I should use). Just put in the css file something like this:
@media (min-width:768px) {
.navbar navbar-default navbar-fixed-top {
background-color: gray;
}
Or is this format wrong?