联系表格7 - 接受错误消息位置

时间:2015-02-25 02:54:45

标签: php wordpress-plugin contact-form

有没有办法为Acceptance指定错误消息的位置? error message

以下是我的代码:

<p>[acceptance agree box]I have read and accept the <a href="http://somesite.com/?page_id=2300">privacy policy</a>. 

我想要做的是将错误信息放在紫色框中(如图所示。)

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,我发现这段代码对我有用。您必须找到包装输入的form-control wrap元素的类。我被命名为“接受条款”。您的名字可能会有所不同。

CSS:

.wpcf7-form-control-wrap.accept-terms input {
  float: left;
  margin-right: 10px;
  display: inline-block;
  clear: both;
}

.wpcf7-form-control-wrap.accept-terms span.wpcf7-not-valid-tip {
  float: left;
  clear: both;
  margin-top: 10px;
}

input[type="submit"] {
  clear:both;
}

表单设置:

[acceptance accept-terms] Your checkbox or acceptance box 

<br />

[submit class:cta-button "Send"]

以下是before

的内容

以下是after

的内容