ページを下にスクロールするメニュー項目を備えた単一ページのワードプレス Web サイトがあります。現在、フッターはページの下部にありますが、上から約 1500 ピクセル下に配置したいので、スクロールするとブラウザー ウィンドウの下部にくっつきます。誰か私にこれについてのガイダンスを教えてもらえますか?
ウェブサイトは現在ここに保持されています: ウェブサイトのリンク
ありがとう、サム
スタイルtop:1500px;
を追加position: fixed
してみましたか#footer
#footer {
margin: 150px 0 0 0;
width: 960px;
float: left;
top: 1500px;
position: fixed;
color: white;
}
1) に追加position: fixed;
し#custom_footer
ます。
margin-bottom
2) に大きなを追加し#csp3_content
ます。
これは私のために働く:
#custom_footer {
position: fixed;
bottom: 0;
}
#csp3_content {
margin-bottom: 1000px;
}