I'm trying to have 3 different size of the logo ( small, med, big) on the basis of different screen sizes. Here is my code:
@media screen and (max-width: 487px) {
.site-header .site-branding {
background-image: url("../images/logo_small.png") !important;
}
}
@media screen and (max-width: 1079px) {
.site-header .site-branding {
background-image: url("../images/logo_med.png") !important;
}
}
@media screen and (min-width: 1080px) {
.site-header .site-branding {
background-image: url("../images/logo_big.png") !important;
}
}
Data is being exchanged from bigto med, but it will not be replaced from medto small. Why?
source
share