如何将我的字体颜色更改为短码

时间:2017-06-03 作者:Gaho K

我的网站的背景和文本颜色都是黑色的。所以观众看不到他们在写什么。我想把文字颜色改成白色,但我不知道该怎么做!因为我的短代码中有一个代码:

[contact-form-7 id="6085" title="Contact form 1"]

我不知道该怎么改变颜色或文字?

1 个回复
SO网友:Johansson

联系人表格7使用wpcf7-form 为其窗体和wpcf7 对于它的父DIV。您可以通过以下CSS规则设置输入类型的颜色:

.wpcf7-form input[type="text"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    color:white !important
}
The!important 规则将使其覆盖任何其他样式的规则。前往Appearance > Customize 并将上述规则添加到自定义CSS中。

PS : 您还可以使用.wpcf7 input[type="text"] 如果您的表单的类别因任何原因而不同。

结束

相关推荐

Specific loop in Shortcode

我在做短码,我被困在这里了。以下是代码:add_shortcode(\'service-shortcode\', \'service_shortcode\'); function service_shortcode($atts) { extract( shortcode_atts( array( \'title\' => \'Service One\', \'icon\' => \'fa-briefcase\'