如何消除Genesis框架默认包含的内联样式?

时间:2012-07-05 作者:HumanBacon

我在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>
这些内联样式造成了我最后一个遗留问题。我已经查看了文档,并试图找出是否有任何挂钩或参数可以更改,但没有找到任何挂钩或参数。

我怎样才能在整个儿童主题中摆脱它们?

非常感谢。

4 个回复
SO网友:Rezen

当您登录并查看前端时,WordPress会自动添加第一个内联CSS。它是WordPress adminbar的CSS的一部分。

<style type="text/css" media="screen">
 html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
对于内联CSS的第二部分,我将在Genesis中检查add\\u操作(“wp\\u header”。。

SO网友:Androliyah

只需添加你不想要的内容/* 并用*/ 像这样

<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>
注意它们是如何变灰和不活跃的

SO网友:Erik

我发现删除空白的最好方法(这不是由管理栏引起的)是在样式中搜索这个css。css:

第页{

margin: 2em auto;
max-width: 1000px;
}

并将2em切换到0em或相同的一些变体。这将删除空白。

SO网友:Er.Ritesh

在上添加类header.php

<html <?php language_attributes(); ?> class="top">
并在上添加cssstyle.css

.top{
    margin:0px !important;
    padding: 0px !important;
}

结束

相关推荐

如何消除Genesis框架默认包含的内联样式? - 小码农CODE - 行之有效找到问题解决它

如何消除Genesis框架默认包含的内联样式?

时间:2012-07-05 作者:HumanBacon

我在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>
这些内联样式造成了我最后一个遗留问题。我已经查看了文档,并试图找出是否有任何挂钩或参数可以更改,但没有找到任何挂钩或参数。

我怎样才能在整个儿童主题中摆脱它们?

非常感谢。

4 个回复
SO网友:Rezen

当您登录并查看前端时,WordPress会自动添加第一个内联CSS。它是WordPress adminbar的CSS的一部分。

<style type="text/css" media="screen">
 html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
对于内联CSS的第二部分,我将在Genesis中检查add\\u操作(“wp\\u header”。。

SO网友:Androliyah

只需添加你不想要的内容/* 并用*/ 像这样

<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>
注意它们是如何变灰和不活跃的

SO网友:Erik

我发现删除空白的最好方法(这不是由管理栏引起的)是在样式中搜索这个css。css:

第页{

margin: 2em auto;
max-width: 1000px;
}

并将2em切换到0em或相同的一些变体。这将删除空白。

SO网友:Er.Ritesh

在上添加类header.php

<html <?php language_attributes(); ?> class="top">
并在上添加cssstyle.css

.top{
    margin:0px !important;
    padding: 0px !important;
}

相关推荐