Twitter bootstrap navbar witout style applying this style for a downed navbar?

I applied some styles to twart bootstrap navbar and then realized that I didn’t want them on the minimized version. At first I was looking for some kind of application class to distinguish between a minimized and unmounted bar, but I can not find it. I will try to use JS to add a class conditionally ... is there a better way to do this?

+1
source share
2 answers

Wrap your styles in a media query like bootstrap:

@media (min-width: 980px) {
    /* your conditional CSS*/
}
+7
source

navbar 768 , , css , :

@media (min-width 768px) {
}
0

All Articles