0

我们的网站 ( http://462184.hs-sites.com/ ) 上有一个粘性菜单,宽度设置为 100%。但是,正如您所看到的,菜单左侧仍然缺少几个像素。

我无法弄清楚它与什么冲突。非常感谢您的帮助!

4

3 回答 3

3

你只是想放弃left:positionvalueCSS。请使用.custom_menu-container.nav-sticky{left:0;}...完成。

于 2015-04-02T05:02:41.440 回答
0

Make these changes:

.custom_menu-container.nav-sticky{
    left: 0; /* add */
    postition: fixed; /* remove !important */
}
于 2015-04-02T06:20:59.797 回答
0

我为你修好了,只需复制并粘贴整个内容 Find: .custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100 %;z-index:10}

http://cdn2.hubspot.net/hub/462184/hub_generated/style_manager/1427950593779/custom/page/PocketBookkeeping_Feb2015-theme/PocketBookkeeping_Feb2015-style.min.css

将其替换为:

.custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100%;z-index:10;left:0;}
于 2015-04-02T05:17:15.603 回答