我正在使用粉底5,我正在尝试更改活动按钮的背景颜色
<li class="active">
悬停在顶栏时正常按钮的背景颜色。任何的想法?感谢
答案 0 :(得分:1)
对于顶级CSS,搜索基础CSS文件以查找活动。 你应该看到这段代码:
.top-bar-section ul li.active > a {
background: #008cba;
color: white; }
.top-bar-section ul li.active > a:hover {
background: #0079a1; }
将背景更改为所需的颜色。
关于活动按钮的CSS,您可以更具体地了解您的意思是什么按钮吗?
答案 1 :(得分:0)
尝试关注css
li.active{
background-color:red !important;
}
li.active:hover{
background-color:yellow !important;
}
查看&lt;的工作示例http://jsfiddle.net/jspatel/2weCW/1/&GT;