Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は Wordpress ブログを持っており、テーマは CSS を使用してリンクを機能させています。ホームページでは機能しますが、他のページでは機能しません。私は CSS の第一人者ではないので、原因を突き止めることができませんでした。誰かが見て、私が見逃しているものを見ることができますか?
この css ルールを削除すると、ナビゲーション バー#accessが折りたたまれ、その高さが親ノードに加算されなくなります<header>。
#access
<header>
#access{float:left}
あなたの問題は、id の div がmainナビゲーション バーの内容の上に浮かんでいることです。css スタイルのルールをmargin-top: 45px;指定すると、問題が解決します。
main
margin-top: 45px;