我们的网站 ( http://462184.hs-sites.com/ ) 上有一个粘性菜单,宽度设置为 100%。但是,正如您所看到的,菜单左侧仍然缺少几个像素。
我无法弄清楚它与什么冲突。非常感谢您的帮助!
我们的网站 ( http://462184.hs-sites.com/ ) 上有一个粘性菜单,宽度设置为 100%。但是,正如您所看到的,菜单左侧仍然缺少几个像素。
我无法弄清楚它与什么冲突。非常感谢您的帮助!
你只是想放弃left:positionvalue
CSS。请使用.custom_menu-container.nav-sticky{left:0;}
...完成。
Make these changes:
.custom_menu-container.nav-sticky{
left: 0; /* add */
postition: fixed; /* remove !important */
}
我为你修好了,只需复制并粘贴整个内容 Find: .custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100 %;z-index:10}
将其替换为:
.custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100%;z-index:10;left:0;}