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.
我正在使用 openpublic 主题开发 Drupal-7 网站。
我已经修改了 CSS 以使标题固定,但是当我滚动页面时 - 内容会滚动到我的导航菜单上。谁能告诉我需要做什么来防止这种情况发生?内容也滚动到我的标题上方。我希望内容保持在我的标题和菜单下方。
我选择了一个特定的页面,因为首页的模板不同。
先感谢您。
发生这种情况是因为您的 div 位置设置为固定。
例子
.div_class_name { position:fixed; }
更改值可能会有所帮助。你可以使用 firebug(Firefox) 或 Chromebug(Chrome) 来检查你的 CSS 。