wordpress 接受隐私政策联系表格-7两行

0yycz8jy  于 2023-05-28  发布在  WordPress
关注(0)|答案(3)|浏览(117)

我有一个接受按钮与我的接触形式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
谢谢你!

mec1mxoz

mec1mxoz1#

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

wlzqhblo2#

我也有同样的问题。我用这些解决了:
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

qxsslcnc

qxsslcnc3#

对我来说,这是有效的:

.wpcf7 input[name="acceptance-564"] {
    width: 16px;
}

相关问题