Hello!
I'm having trouble trying to remove the space that is present between the header and nav bar in my site. Anyone know where to look to fix the problem? I'm using the Executive theme from StudioPress. Any help would be great!
Hello!
I'm having trouble trying to remove the space that is present between the header and nav bar in my site. Anyone know where to look to fix the problem? I'm using the Executive theme from StudioPress. Any help would be great!
<div class="widget-area">
This CSS/element style is pushing this down - use Firebug/modern browser and 'inspect your elements' to see same info...
The div with class .widget area that the two text widgets are in at the right of the header area is what is holding the nav and content down. Add a height declaration to the selector shown below.
#header .widget-area {
height: 140px;
}
I also suggest adding a width of 100px to #text-10 as it is currently hanging way outside #wrap and making a horizontal scroll bar show up.
#text-10 {
width: 100px;
}I should have refreshed.
Thanks for the help! I added a height declaration and it did the trick!
You are welcome.
You must log in to post.