删除背景图像后,主页底部的白色区域

时间:2015-07-31 04:41:28

标签: html css wordpress removing-whitespace

我有一个简单的问题,很可能会有一个简单的解决方案。我已经检查了其他线程,但似乎都没有正确解决我遇到的问题。

我的问题:我的主页底部有一个空格。

我的目标是在顶部设置一个黑色背景和导航栏的页面,黑色背景覆盖整个页面,没有滚动条。目前我无法让body元素以黑色覆盖页面的高度,因此我在页面内容下面看到一个很大的空白区域。

我已经尝试弄乱边距和填充,但我想我可能会在错误的位置进行操作。

我的网站:www.hallofheroclix.com(完成时颜色全黑)

非常感谢任何帮助。非常感谢你提前!

2 个答案:

答案 0 :(得分:1)

您尚未为正文指定背景颜色。

请将背景CSS属性添加到正文:

body {
    color: #141412;
    line-height: 1.5;
    margin: 0;
    background: #000000;
}

由于

答案 1 :(得分:0)

**Try this instead**

I have looked you coding, i have made some changes to html structure and added some css.You can add / update  this css to your css file style.css.

**Css**
<style>
    .navbar {
      text-align: center;
      background-color: rgb(255, 242, 0);
      position: static !important;
      top: -230px;
    }
    html, body {
      height: 100% !important;
    }
    .main-container {
      background-color: red;
      height: 301px;
    }
    #page {
      height: auto;
      min-height: 100%;
      background-color: #000;
    }
</style>

**Html**
        <header id="masthead" class="site-header" role="banner">
            <div id="navbar" class="navbar">
                <nav id="site-navigation" class="navigation main-navigation" role="navigation">
                    <button class="menu-toggle">Menu</button>
                    <a class="screen-reader-text skip-link" href="#content" title="Skip to content">Skip to content</a>
                    <div class="nav-menu"><ul><li class="page_item page-item-6"><a href="">BP</a></li><li class="page_item page-item-20 current_page_item"><a href="">Home</a></li><li class="page_item page-item-24"><a href="">Test Subject</a></li></ul></div>
                    <form role="search" method="get" class="search-form" action="">
                <label>
                    <span class="screen-reader-text">Search for:</span>
                    <input type="search" class="search-field" placeholder="Search &hellip;" value="" name="s" title="Search for:" />
                </label>
                <input type="submit" class="search-submit" value="Search" />
            </form>                 
                </nav><!-- #site-navigation -->
            </div><!-- #navbar -->
            </header><!-- #masthead -->
            <div class="main-container">
             <a class="home-link" href="# title="My Site" rel="home">
                <h1 class="site-title">My Site</h1>
                <h2 class="site-description">Cool logo coming soon!</h2>
            </a>
           </div>
                <div id="main" class="site-main">