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

    Hello Kriesi Team,
    I use the overlapping of the logo in the page content for my website.
    That’s why I added the “CSS – Logo overlap content” to the Quick CSS.

    /* CSS - Logo overlap content */
    #top .logo,
    #top .logo a{
      overflow: visible;
    }
    .logo img {
        height: 180%;
        max-height: 180px !important;
    }

    How can I set this logo overlap to also work for the mobile view?

    Thank you for your information.

    With best regards, Severin

    #1302658

    Hey Severin,

    Thanks for contacting us!

    Please replace your code with following one

    /* CSS - Logo overlap content */
    #top .logo,
    .responsive .logo,
    #top .logo a,
    .responsive .logo a{
      overflow: visible;
    }
    .logo img,
    .responsive .logo img {
        height: 180% !important;
        max-height: 180px !important;
    }

    Best regards,
    Yigit

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