Archived topic
Vertical-align middle of Header for main navigation menu text ?
3 replies · Started by lemonrockcompany on August 17, 2021
Viewing posts 1–4 of 4
How do I vertically align middle navigation menu text to be in the middle of the header? [see attached picture in link]
Hi there,
Consider removing all the paddings you've added manually and set the site's structure to "Flexbox" on Appearance > Customize > General.
You then add this CSS:
nav#site-navigation {
display: flex;
align-content: center;
align-items: center;
}
Thank you. By changing settings to "Flexbox", it works.
Nice one. Glad it works for you. :D
This archived topic is closed to new replies.