您可以通过更改access id的background属性来更改WP TwentyTen主题标题导航的黑条,但在更改时,请尝试使新规则更加具体,如下所示:
body #access{
background: none; // Add here image or color whatever you want
}
要在每个链接后面应用单个背景图像,请将background属性添加到#access li元素,如下所示:
body #access li{
background: url(\'image.jpg\') no-repeat;; // Add here appropriate image path
}