I’m looking to vertically align my navigation with the logo uploaded to the site. By default it it’s top aligned with some margin/padding. What CSS should I use to make it stay center to the logo or is that not possible with the responsive setup?
I tried using firebug to identify the css used but I’m not as advanced enough to see where it’s being controlled. Any help would be great. Thanks.
Hello there,
Thanks for writing. Yes, it is top aligned, but you can edit that with some padding over the #navigation{} class. You can add your own CSS over the custom.css file or within the theme options panel, you’ll find a custom css input.
Something like this might work for you:
#navigation {
padding-top: 25px;
}
Best,
Juan.
Awesome. Thank you very much.