On mobile my Logo does not resize. This is for the smaller screen sizes like 320 or 375. This is what I have in place. Where am I going wrong?
@media only screen and (max-width: 320px) {
body .x-brand img { width: 120px; }
}
@media only screen and (max-width: 480px) {
.x-brand img {
width: 150px;
}
}
@media only screen and (max-width: 500px) {
body .x-brand img { width: 260px; }
@media (max-width: 767px){
.x-brand img {
width: 180px;
}
}
@media only screen and (max-width: 979px) {
body .x-navbar.x-navbar-fixed-top { position: fixed!important; }
#footer-logo {width:25%;}
}