Hiding Background Images in Bootstrap 3
-
Im using BS3 in my theme and I try this custom code and it seems to not be working. Any suggestions?
@media(max-width:767px){
.myatu_bgm_fs { display: none !important; }
body { background-image: none !important; }
}
@media(min-width:768px){
.myatu_bgm_fs { display: none !important; }
body { background-image: none !important; }
}
@media(min-width:992px){
.myatu_bgm_fs { display: inherit !important; }
body { background-image: inherit !important; }
}
@media(min-width:1200px){
.myatu_bgm_fs { display: inherit !important; }
body { background-image: inherit !important; }
}
The topic ‘Hiding Background Images in Bootstrap 3’ is closed to new replies.