[Resolved] IE logo position problem

Home Forums Support [Resolved] IE logo position problem

Home Forums Support IE logo position problem

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1000724
    David

    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

    #1001147
    Tom
    Lead Developer
    Lead Developer

    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;
    }
    #1001439
    David

    Thanks Tom

    #1001897
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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