Archived topic
Display the tagline above the logo
8 replies · Started by twarrior on May 30, 2022
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.
Hi there,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
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!