Site logo

Archived topic

Logo center above title in mobile header

3 replies · Started by Manuel on November 24, 2022

Viewing posts 1–4 of 4

Hello team,
I try to center the logo above the title on mobile header.
I find on the forum this code:
.site-branding-container {
display: flex;
flex-direction: column;
}
I added on the CSS customizer.
Is good but is making that also on the browser that I don't want.
So I don't know how to make it only for the mobile!
My site https://manuelmeszarovits.com/

In advance thanks for your time,
Manuel

Hi there,

change the CSS to this:


@media(max-width: 768px) {
    .site-branding-container {
        display: flex;
        flex-direction: column;
    }
}

Thank you for your quick reply David.
Working good.
Generatepress is the best support in the world!
Warm regards,
Manuel

Happy to hear that :)

This archived topic is closed to new replies.