Dont know what causes the image/logo to move when hovering. It disappears as soon as I remove the “fixed” property in CSS.
Any hints?
Many thanks in advance,
Alex
Hey alexandervellguth,
Did you use any custom code to place the logo?
I see some inline styles like
left: 8px; top: 6.5px; overflow: hidden; display: block; height: 224px; width: 234px;
Pixels can only be whole numbers please try adding top:6px if you still have an issue we need access to the backend to check this issue.
Best regards,
Vinay
Hello Vinay,
many thanks for you reply. I have not set the top style. However, I did used some code to place the logo to the bottom right corner.
Attached you will find the login data.
Best regards,
Alex
Hi,
Thank you for the credentials
Please remove the CSS class name “ppm-logo-neu” from img.
I think the duplicate class name on a and img is causing a conflict.
Replace your CSS with the below
.ppm-logo-neu,
.ppm-logo-neu img,
a.ppm-logo-neu:hover img {
position: fixed !important;
right: 0px !important;
bottom: 0px !important;
width: 250px !important;
height: 250px !important;
}
Best regards,
Vinay