You need to do the following:
@media all and (max-width: 767px) {
.global-container {
margin-top: 0;
background-image: none;
}
}
If you want to target your desktop, you can use:
@media (min-width:1025px) {
.global-container {
margin-top: 0;
background-image: none;
}
}
I just notice that you are using SASS, you can do like this:
.global-container {
margin-top: 60px;
background-image: $image-bg;
@media (max-width: 767px) {
}
@media (min-width:1025px) {
}
}
source
share