顶部菜单意外向右展开

  • 本文关键字:菜单 意外 顶部 css
  • 更新时间 :
  • 英文 :


我有以下问题:

在我的网站上向下滚动时,顶部菜单标题意外地向右扩展。这个问题存在于FireFox和Chrome中。

访问我的网站,看看我的意思:www.robvanderstaaij.nl

感谢您的任何帮助。

问候

在样式表中,使用 max-width: 1060px; 更改max-width: 1260px;

风格.css,第 #835 行

.site-header {
    background-color: #000;
    max-width: 1260px;
    position: relative;
    width: 100%;
    z-index: 4;
}

.site-header {
    background-color: #000;
    max-width: 1060px;
    position: relative;
    width: 100%;
    z-index: 4;
}

最新更新