0

我有一个单页 wordpress 网站,其中包含向下滚动页面的菜单项。目前我的页脚位于页面底部,但是我希望它从顶部向下大约 1500 像素,并且当您滚动经过它时,它会粘在浏览器窗口的底部。有人可以给我一些指导吗?

网站目前在这里举行: 网站链接

谢谢,山姆

4

2 回答 2

1

1) 添加position: fixed;#custom_footer;

2)添加一个margin-bottom#csp3_content

这对我有用:

#custom_footer {
  position: fixed;
  bottom: 0;
}

#csp3_content {
  margin-bottom: 1000px;
}
于 2012-10-30T13:34:42.107 回答
1

您是否尝试过添加样式top:1500px;position: fixed#footer

#footer {
 margin: 150px 0 0 0;
width: 960px;
float: left;
top: 1500px;
position: fixed;
color: white;
}
于 2012-10-30T13:39:27.587 回答