如何对style.php进行更改

时间:2013-09-20 作者:Millhorn

我正在从一个叫做Dynamix的Wordpress主题工作。

现场位于here...

如果你向下滚动到带有评论的帖子,你会看到一个带有黑色背景的评论气泡。如果你把鼠标悬停在它上面,你会注意到它变成了红色。

In Chrome\'s debugger, I found this line of code... (很长,但从这个开始)

#content ul li.socialinit, #content and it ends with this background tag...

background-color: #252525; (在调试器中)。

时尚。php,即here, 我找到了代码,但我不知道如何更改它。

如下所示:background-color:#<?php echo $linkcol; ?>;

我不要黑色背景。我想说background: none;, 这应该可以解决我的问题。

I\'m lost on what to do here...

1 个回复
最合适的回答,由SO网友:Twifty 整理而成

要删除样式而不修改原始代码,可以尝试将其添加到样式中。css

.comment.yes {
    background: none !important;
}
这将为该类添加新样式。这个!important part告诉浏览器不要让其他样式超过这条线。

结束

相关推荐

有什么办法可以重写wooCommerce-template.php吗?

我正在尝试对woocommerce模板进行一些自定义。php文件,但我担心它会在下次更新时被覆盖。我想知道是否有一种方法可以从函数重写函数。php和另一个加载我的自定义文件。这是woocommerce中的功能:public function include_template_functions() { include_once( \'woocommerce-template.php\' ); } 我想知道是否有一种方法可以覆盖它,或者其他方法可以覆盖它。