接受隐私政策联系表格7分为两行

时间:2016-07-21 18:48:14

标签: wordpress contact contact-form contact-form-7

我的联系表单7插件有一个接受按钮,但它将按钮与链接文本分成两行。我该如何解决这个问题?

> <div class="align-center"> [acceptance acceptance-564 ]<a
> href="http://www.jornadasdeldeportelarobla.com/aviso-legal/">Acepto la
> Política de Privacidad</a> </div>

这是我用来创建联系表单的代码,这是它的外观图片:

enter image description here

谢谢!

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。我用这些解决了:

HTML(编辑联系表格)

<div class="acceptance-container"> [acceptance acceptance-443] Acconsento al trattamento dei dati personali D.Lgs. 196/2003 (<a href="#">link</a> di approfondimento) <br /></div>

然后我把这些代码放入CSS

.wpcf7-form-control-wrap { display: inline!important; }

enter image description here

答案 1 :(得分:0)

.wpcf7 input[type="acceptance"],
.wpcf7-list-item-label {
    display: inline!important;
}