Homepage › Community Forums › Legacy Theme Support › Custom CSS not resolving after WP 4.6 update › Reply To: Custom CSS not resolving after WP 4.6 update
Ok, just inspected some of the code and tested a few things. The first thing I noticed is that the space above the top is reduced above the logo once I remove the height from the custom code –
.custom-header .site-header {
background: url("http://arisingimages.com/blog/images/2014/10/960x164-ai-header-full.png") no-repeat center !important;
/*height: 100%;*/
width: 100%;
min-height: 164px;
}
As you can see I didn’t totally remove it, I just “commented” it out just in case you need it for something.
So, “comment out” or remove that code first to take care of the top of the logo.
Now the bottom space of the Menu appears to be coming from the Layer Slider Plugin. It adds 350px of height under the menu. Here’s the code that shows up in your source code –
width: 960px;
height: 350px;
max-width: 960px;
margin: 0 auto;
margin-bottom: 0px;
Are you using the Layer Slider at all? If not, I would try disabling that to see if it makes a difference without having to override it with custom CSS.
Let me know!
BTW, here’s how it looks when you remove the height from both of those areas I mentioned above – http://i.imgur.com/QZXpwoX.png

