Site logo

Archived topic

Floating menu

5 replies · Started by David on January 5, 2023

Viewing posts 1–6 of 6

Hello,

I have a floating menu on the right side. The header image was pushed to the left side. Is it possible to have the image in the center of the header?
Thanks , David

Can you try adding this through Appearance > Customize > Additional CSS:

@media (min-width: 1025px) {
    header .inside-header {
        position: relative;
        padding-bottom: 83px;
        padding-top: 83px;
    }

    header .inside-header .site-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

Great, thank you very much! Superfast support :)
D

You're welcome, David! :)

This archived topic is closed to new replies.