-
Had the same problem where my logo was going over the top of my menu on smaller sizes using gantry.
Eventually fixed it by adding in media queries to a custom css sheet specifying a new image and size with the !important attribute. The thing about the !important attribute is that the more selector specific it is, the more precedence it has. So to override the !important tag try chucking in more selectors.
My below code didn't work until I added the extra .logo-block class.
@media only screen and (min-width: 960px) and (max-width: 1199px) {
.logo-block #rt-logo {
background: url("/images/logosmall.png") no-repeat scroll 50% 0 transparent !important;
height: 100px !important;
width: 330px !important;
}
}
Hopefully this answers the question!
-
The following users have thanked you: Muntiu Ioana