【问题标题】:How to fix navigation bar in wordpress? [closed]如何修复wordpress中的导航栏? [关闭]
【发布时间】:2019-02-12 12:10:44
【问题描述】:

我正在开发一个主题,当我们滚动它时它会隐藏起来。我想像 w3school 网站一样将其修复在顶部。任何想法? 使用Sticky menu之类的插件是不是一个不错的选择

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

CSS

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

【问题讨论】:

标签: javascript php jquery css wordpress


【解决方案1】:

masthead 使用以下内容时,您可以将棕色边框保留在一边。

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

【讨论】:

  • 是标头默认css属性还是什么?
  • 不,是header的ID
【解决方案2】:

添加这个css

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

【讨论】:

    猜你喜欢
    • 2016-12-27
    • 1970-01-01
    • 1970-01-01
    • 2012-03-15
    • 1970-01-01
    • 2021-12-26
    • 1970-01-01
    • 2021-07-18
    • 1970-01-01
    相关资源
    最近更新 更多