Site logo

Archived topic

IE logo position problem

3 replies · Started by David on September 4, 2019

Viewing posts 1–4 of 4

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.