如何在WordPress中修复导航栏?

时间:2018-09-07 07:28:17

标签: javascript php jquery css wordpress

我正在研究一个具有动态菜单的主题,当我们滚动该主题时会隐藏它。我想像w3school网站一样将其修复在顶部。任何想法? 使用像Sticky menu

这样的插件是一个不错的选择

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

CSS

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

2 个答案:

答案 0 :(得分:1)

添加此CSS

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

答案 1 :(得分:1)

将以下内容用于masthead时,可以将棕色边框留在侧面。

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