Archived topic
IE logo position problem
3 replies · Started by David on September 4, 2019
Viewing posts 1–4 of 4
Hello
Can you help me with this. The logo position has dropped in the header when view in IE, see here... https://ibb.co/DMPVt3Z
But looks fine in chrome http://185.20.51.60/~moo2yooco/
Do you know how to fix this in IE?
Thanks
Dave
Hi there,
Try replacing this:
.site-branding, .site-logo {
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 200;
}
With this:
.site-branding, .site-logo {
position: absolute;
left: 50%;
top: 10px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 200;
}
Thanks Tom
You're welcome :)
This archived topic is closed to new replies.