wordpress - 如果屏幕大于页面,则在底部

时间:2015-10-20 06:28:27

标签: css wordpress footer

我有一个带有Minamaze主题的wordpress网站。它有一些大页面和一些小页面。

如果页面小于屏幕,我希望将页脚放在屏幕的底部(最好是垂直居中的主体)。

如果页面大于屏幕,我希望页脚放在页面底部(滚动下来后可见)。

我尝试了很多选项,如:

footer {
    position: relative;
    margin-top: -144px; /* negative value of footer height */
    height: 144px;
    clear: both;
}

我看到了很多关于“包装”的内容,但没有一个真正有用。

该网站为http://www.samenherbestemmen.nl,希望有人可以提供帮助。

NB :我现在已经知道页脚一直粘在底部,但是当页面大于屏幕时,我更喜欢将页脚放在页面底部。

1 个答案:

答案 0 :(得分:1)

Codepen http://codepen.io/noobskie/pen/wKpWXO?editors=110

我认为你所指的是什么叫做“粘性页脚”

我在你当前的页脚中使用了相同的html标记,但我没有使用你的任何css,所以你可能遇到一些值得一试的冲突

<强> CSS

* {
  margin: 0;
}
html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -142px; 
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  height: 142px; 
}
.site-footer {
  background: orange;
}

* {
  margin: 0;
}
html,
body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -142px;
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer,
.page-wrap:after {
  height: 142px;
}
.site-footer {
  background: orange;
}
<div class="page-wrap">

  Content!

</div>

<footer class="site-footer">
  <div id="footer">
    <div id="footer-core" class="option4">
      <div id="footer-col1" class="widget-area one_fourth">
        <aside class="  widget widget_text">
          <div class="textwidget">
            <center><a href="http://www.grosfeldvandervelde.nl" target="_blank"><h3 class="widget-title"><font color="black">Grosfeld van der Velde</font><br><font color="#dbd8c1"> architecten</font>
</h3></a>
            </center>
          </div>
        </aside>
      </div>
      <div id="footer-col2" class="widget-area one_fourth">
        <aside class="  widget widget_text">
          <div class="textwidget">
            <center><a href="http://www.rho.nl" target="_blank"><h3 class="widget-title"><font color="black">Rho </font><br><font color="#dbd8c1">adviseurs voor leefruimte</font>
</h3></a>
            </center>
          </div>
        </aside>
      </div>
      <div id="footer-col3" class="widget-area one_fourth">
        <aside class="  widget widget_text">
          <div class="textwidget">
            <center><a href="http://www.pauwert.nl" target="_blank"><h3 class="widget-title"><font color="black">Van den Pauwert </font><br><font color="#dbd8c1">architecten</font>
</h3></a>
            </center>
          </div>
        </aside>
      </div>
      <div id="footer-col4" class="widget-area last one_fourth">
        <aside class="  widget widget_text">
          <div class="textwidget">
            <center><a href="http://www.verkerk-erfgoed.nl" tagert="_blank"><h3 class="widget-title"><font color="black">Verkerk </font><br><font color="#dbd8c1">erfgoed<font>
</font></font></h3></a>
            </center>
          </div><font color="#dbd8c1"><font>
		</font></font>
        </aside>
      </div>
    </div>
  </div>
  <!-- #footer --><font color="#dbd8c1"><font>		
		<div id="sub-footer">
		<div id="sub-footer-core">	

						<!-- #footer-menu -->

			<div class="copyright">
			Copyright <a href="http://www.bergtop-ict.nl">BergTop ICT</a>
			</div>
			<!-- .copyright -->

		</div>
		</div>
	</font></font>
</footer>

修改 oops我忘记提及您需要将课程site-footer添加到父footer