hello, i’m using the following code to overlapping the logo.
.logo, .logo a {overflow: visible;}
.logo img {max-height: 150px !important;margin-top:-35px !important; }
The Problem, now the logo is not rezise in the mobil version. How can i solve this problem?
Regards; Rico
Hi suchfin!
The max-height !important is the problem. Try this instead.
#top .logo img { max-height: 150px; }
@media only screen and (max-width: 767px) {
#top .logo img { max-height: 80px !important; }
}
Regards,
Elliott