Hello,
When I increased the size of my logo area it raised the text of my menu items (Home, About, Contact Us). How do I center align/justify the text between the top and bottom of the menu bar? Thanks
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
#branding .display-logo {
line-height: 80px;
}
#branding h1 {
height: 80px;
}
#header #navigation li a {
height: 80px;
line-height: 80px;
}
Hope this helps !
Thanks. That worked.
Please login or Register to submit your answer