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
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