【发布时间】:2013-12-13 21:48:18
【问题描述】:
我在我的 WP 网站 http://southcumberlandcommunityfund.org/dev/(Vantage 主题,Page Builder 插件)中嵌入了 M/C 订阅表单。如您所见,“立即注册”按钮消失了。我已经更改了 html 中的颜色,没有任何区别。
我想要一种纯色、可见的颜色(例如我粘贴到代码中的 html # 的灰色)。
任何帮助将不胜感激。
【问题讨论】:
我在我的 WP 网站 http://southcumberlandcommunityfund.org/dev/(Vantage 主题,Page Builder 插件)中嵌入了 M/C 订阅表单。如您所见,“立即注册”按钮消失了。我已经更改了 html 中的颜色,没有任何区别。
我想要一种纯色、可见的颜色(例如我粘贴到代码中的 html # 的灰色)。
任何帮助将不胜感激。
【问题讨论】:
它来自样式表的第 345 行。
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dfdfdf), color-stop(1, #ffffff));
background: -ms-linear-gradient(bottom, #dfdfdf, #ffffff);
background: -moz-linear-gradient(center bottom, #dfdfdf 0%, #ffffff 100%);
background: -o-linear-gradient(#ffffff, #dfdfdf);
这是选择器:
button, html input[type="button"], input[type="reset"], input[type="submit"]
您可以通过在 mailchimp 样式中添加 background-image: none; 来解决此问题。
【讨论】: