Site logo

Archived topic

Display the tagline above the logo

8 replies · Started by twarrior on May 30, 2022

Viewing posts 1–9 of 9

Hello,

I have found several discussions about how to put the Tagline below the logo... but how to put it ABOVE the logo? (url to image in private info)

just css? or a Hook?

PS: this support is priceless! Love and Thanks in advance.

sure, here you have it

Try this CSS:

.site-header .site-branding-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}

Thanks. Works.

Sorry,

Could it be CENTERED with the logo?

Hi there,

Kindly try modifying the current code with this one:

.inside-header .site-logo {
    margin-right: 0;
}

.site-header .site-branding-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

Hope this helps!

Works!

You’re welcome! Glad that worked!

This archived topic is closed to new replies.