我在Genesis框架中创建了一个儿童主题。我已经创建了我的所有样式规则,但是,在标记中,Genesis默认添加了一些我想消除的内联规则。
规则如下所示:
<style type="text/css" media="screen">
html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
<style type="text/css">
#header { background: url(http://localhost/h.jpg) no-repeat; }
</style>
这些内联样式造成了我最后一个遗留问题。我已经查看了文档,并试图找出是否有任何挂钩或参数可以更改,但没有找到任何挂钩或参数。
我怎样才能在整个儿童主题中摆脱它们?
非常感谢。