我正在使用 Firefox 插件Stylish为 Facebook 创建自定义样式。我试图让顶部的蓝色条变平,但我做不到。我使用 CSS 代码:
#blueBar {
background-color: transparent !important;
}
但这对它没有影响。为什么是这样?
@BrockAdams - 我试过了,还是没有,所以我只用了:
#blueBar {
background-image: url("http://i.imgur.com/vUnrU8x.png") !important;
}
尝试使用更改 id #blueBarHolder 背景。喜欢:
.hasSmurfbar #blueBarHolder, .hasSmurfbar #blueBarHolder.slim,
.hasSmurfbar #blueBarHolder #pageHead,
.hasSmurfbar #blueBarHolder #headNav,
.hasSmurfbar #blueBarHolder #blueBar {
background: transparent !important;
}
希望它会奏效。