Wordpress儿童主题样式超过父主题样式

时间:2013-07-15 17:35:02

标签: wordpress themes wordpress-theming customization

我正在尝试为主题designfolio开发一个子主题,因为我创建了一个名为'mychild'的文件夹,并将style.css放入其中,如themes / mychild / style.css。

/*
Theme Name:     proudeon
Theme URI:      http: //www.presscoders.com/designfolio
Description:    Child theme for the Designfolio theme
Author:         sunilkumar
Author URI:     http: //www.presscoders.com/
Template:       designfolio
Version:        0.1.0
*/

@import url("../designfolio/style.css");
#header {
height: 450px;
border:1px solid red;
}
#header-container, .footer-widget-container{
background: none repeat scroll 0 0 red;     
}

但是这些变化没有反映出来。我已经成功安装了儿童主题,我可以从wordpress编辑器编辑我的子主题style.css。

我可以从firebug inspect元素中看到新的子样式,但它不活动。当我从firebug inspect元素隐藏父样式时,我可以看到网站中反映出的新样式。

请帮我找出问题

由于 骄傲

1 个答案:

答案 0 :(得分:1)

尝试在每个样式行中添加!important。

例如:

#header {
height: 450px !important;
border:1px solid red !important;
}