2015-04-02 109 views

回答

3

你只是想在css中給left:positionvalue。請使用.custom_menu-container.nav-sticky{left:0;} ...完成。

+0

謝謝大家 - 工作完美! – PocketJosh 2015-04-02 08:24:26

0

我固定它給你,只需複製並粘貼了整個事情 查找: .custom_menu-container.nav粘{背景:#29a2f3;位置:固定重要;頂部:0;過渡:所有,5S緩解0;寬度:100%; z索引: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;} 
0

進行這些更改:

.custom_menu-container.nav-sticky{ 
    left: 0; /* add */ 
    postition: fixed; /* remove !important */ 
}