Zen Follower
- Join Date:
- Oct 2007
- Posts:
- 101
- Plugin Contributions:
- 0
How in the world do you remove that gap below the header?!
OK, I've searched the forum and I've read at least 4 different threads on the topic, but I still can't get rid of that gap below the header. Here's my test site:
http://www.cobraplant.com/plants/
I have my header with the nav bar (in white) just below it. Between the nav bar and the contents, there is a gap that won't go away. I've gone into tpl_header.php and tried deleting these codes as was suggested in other threads:
<!--bof-branding display--> <div id="logoWrapper"> <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?> <div id="taglineWrapper"> <?php if (HEADER_SALES_TEXT != '') { ?> <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div> <?php } ?> <?php if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) { if ($banner->RecordCount() > 0) { ?> <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div> <?php } } ?> </div> <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?> </div> <div class="clearBoth"></div> <!--eof-branding display-->This deleted the space, but it also deleted my header. I tried deleting <div class="clearBoth"></div>, but that did nothing. I tried messing around with CSS, but I only managed to delete the nav bar, which isn't what I wanted.
Does anyone know of a solution to this?