Archived topic
Move site title beneath logo in navigation
1 reply · Started by Elzanne Cronjé on January 9, 2023
Hi!
I've centered the logo and title in the navigation in http://lieslbasson.co.za/. Now I would like to place the site title beneath the logo in navigaton. I have tried the following snippet but it's not working: https://gist.github.com/generatepress/940493d7b6a9424e70d7
I've also tried adding the site title as a hook below the logo, but it still displays right next to it.
Please assist.
Thank you.
Hi there,
Try this CSS:
@media (min-width: 769px) {
.inside-header .site-branding-container {
display: flex;
flex-direction: column;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)