如何更改 Bota 中的编码,以便顶部栏已经存在?我试过这样做
#topbar {
position:fixed;
background: #333;
top:0;
right:0;
left:0;
z-index:99;
}
这让它完全消失了。任何帮助,将不胜感激。
编辑:链接到主题http://wordpress.org/themes/bota
我正在使用 Wordpress 3.5.2
如何更改 Bota 中的编码,以便顶部栏已经存在?我试过这样做
#topbar {
position:fixed;
background: #333;
top:0;
right:0;
left:0;
z-index:99;
}
这让它完全消失了。任何帮助,将不胜感激。
编辑:链接到主题http://wordpress.org/themes/bota
我正在使用 Wordpress 3.5.2
您应该添加height
样式
#topbar
{
position:absolute; /* or 'fixed' */
background: #333;
top:0;
width: 100%; /* or 'left: 0; right: 0;' */
height: 100px;
}
您可以尝试使用名为 Sticky Header http://wordpress.org/plugins/sticky-header/的免费 WordPress 插件
它应该适用于几乎所有使用最佳实践编码的 WordPress 主题。