0

如何更改 Bota 中的编码,以便顶部栏已经存在?我试过这样做

#topbar {
      position:fixed;
      background: #333;
      top:0;
      right:0;
     left:0;
     z-index:99;

}

这让它完全消失了。任何帮助,将不胜感激。
编辑:链接到主题http://wordpress.org/themes/bota
我正在使用 Wordpress 3.5.2

4

2 回答 2

0

您应该添加height样式

#topbar 
{
  position:absolute; /* or 'fixed' */
  background: #333;
  top:0;
  width: 100%; /* or 'left: 0; right: 0;' */
  height: 100px;
}  

JSFiddle 演示

于 2013-10-09T21:43:08.097 回答
0

您可以尝试使用名为 Sticky Header http://wordpress.org/plugins/sticky-header/的免费 WordPress 插件

它应该适用于几乎所有使用最佳实践编码的 WordPress 主题。

于 2013-10-23T08:58:05.413 回答