如何修复WordPress中的导航栏?



我正在研究一个主题,当我们滚动它时,它就会隐藏一个动态菜单。我想像w3school网站一样将其修复在顶部。知道吗? 使用像粘性菜单这样的插件是一个不错的选择

这是网站链接 https://spaceunlimited.in/

.CSS

.ehf-header #masthead {
z-index: 30;
position: relative;
}

当使用以下masthead时,您可以将棕色边框保留在侧面。

#masthead {
z-index: 30;
position: fixed;
background: whitesmoke;
top: 0;
left: 20px;
max-width: calc(100% - 40px);
}

添加此 css

.ehf-header .headroom--unpinned{
position:fixed !important;
top:0px;
}

最新更新