Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #399222

    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

    #399262

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.