0
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 switched to dark gray, but when the screen is less than 768px, the menu turns light gray again, I would need to overwrite the place that makes the menu go back to light gray, but I have no knowledge of how to use the "tag" @media
(if this is the one I should use). I just put something like this in the css file:
@media (min-width:768px) {
.navbar navbar-default navbar-fixed-top {
background-color: gray;
}
Or that shape is wrong?
Thank you to everyone who helped, all the answers were of great help.
– Gabriel Queiroz