Archived topic
Move tagline under logo
3 replies · Started by Bob on April 5, 2020
Hi team,
Sorry to ask this question, as I can see lots of other people have asked the same question before. However, having read all of the previous responses, it doesn't seem to reflect what I am seeing.
All I want to do is reposition the Tag line, to sit under the Logo. I have looked to add CSS in the Customiser, but there is loads of other code in there and I have no idea where to place it.
I am using a child theme, so is there a straight forward way of adding something there to make this happen?
Thanks
Hi there,
you can use this CSS:
/* Stack logo and Tag line */
.site-branding-container {
flex-direction: column;
align-items: flex-start;
}
And you can add it to the very top of Additional CSS in the Customizer
Thanks David, that worked a treat.
You're welcome