无论我尝试什么,标题都不会改变颜色

时间:2015-02-18 14:48:19

标签: css wordpress menu colors header

我有以下网站

http://cancersurvivorshipireland.com/cancersurvivorshipireland.com/wordpress/

我尝试更改标题菜单颜色。我之前已经使用此处提供的代码更改了菜单项本身的颜色,但它非常有用,但无论我做什么,我都可以将肮脏的蓝色更改为更好的颜色。

我尝试了各种类型的代码:

top-header {
    background-color: white;
}

header {
    background-color: white;
}

.sf-menu {       
 position: relative;         
 padding: 0;         
 width: 100%;        
 border-bottom: 3px solid #e9e9e9;       
 background: #ffffff !important;
}

1 个答案:

答案 0 :(得分:1)

您访问actual stylesheet that's doing the overriding,您会看到它是由主题选项生成的自定义样式表。它甚至不作为实际.css文件存在于服务器上。它也是页面上调用的最后一种样式。

不是编辑不同的CSS样式表并使用!important来覆盖它,而是最好从WP Admin主题选项中更新它(如果可能的话,甚至删除它)。

另外,正如(现已删除?)其他答案所述,您需要确保.top-header类的前缀为.。你的问题目前没有显示出来。