Tagged: header
After upgrading to 2.6 I’ve had problems with the header like everyone else. My problem should be simple to fix I think.
Before I had this in my custom.css file
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 73px; line-height: 100px;
It got rid of the white space under my menu and logo. Right now the menu items are floating in space and I’d prefer them to be closer to the line separating the header from the body.
My site is http://www.AdamPervez.com
Any help would be greatly appreciated.
Thanks!
Hi happinessplunge!
Please add following code to Quick CSS and adjust as needed
#header_main .container, .main_menu ul:first-child>li a { line-height: 130px; }
Regards,
Yigit
Thanks a million. It worked! I think I like the logo centered option now that I’ve discovered it.
Is there some CSS to get rid of the padding above and below the header?
Here you go. Thanks so much!
http://www.adampervez.com/wp-content/uploads/2014/03/site.jpg
Hi!
Please add following code to Quick CSS as well
.logo img { padding: 0; }
#header_main .container { height: 73px; }
Cheers!
Yigit
Thanks a million for your help. That worked and I added the margin changes to get rid of the space in the header. The code below achieved the desired result
.logo img { padding: 0px; ; }
#header_main .container { height: 73px !important; margin-top: -10px; margin-bottom: -10px }
Thanks again!