简体   繁体   English

单选按钮未显示在表单中

[英]Radio button is not being displayed in a form

I use a external form to collect lead on my blog based on wordpress.我使用外部表格收集基于 wordpress 的博客上的潜在客户。 When i use the form code in other pages, it works perfectly.当我在其他页面中使用表单代码时,它工作得很好。

However, when i add it on my blog, radio button is not displayed.但是,当我将它添加到我的博客时,单选按钮不显示。 The code is the same, but i can't figure out why my blog code is hidding the radio button.代码是一样的,但我不知道为什么我的博客代码隐藏了单选按钮。

My blog is https://blog.boladetenisdelivery.com and the form is the first one in the right column (Avise-me dos posts novos).我的博客是https://blog.boladetenisdelivery.com ,表格是右栏中的第一个(Avise-me dos posts novos)。

The problem is in the question (in portuguese):问题出在问题中(葡萄牙语):

"Gostaria de receber promoções e novidades no seu email?* Sim Não" "Gostaria de receber promoções e novidades no seu email?* Sim Não"

Before Sim / Não (which means yes / no) should have radio buttons.在 Sim / Não(表示是/否)之前应该有单选按钮。

Anyone can help me?任何人都可以帮助我吗?

Regards, Eduardo问候, 爱德华多

It's a pure css issue.这是一个纯粹的 css 问题。 Add the following properties to the below class.将以下属性添加到下面的 class。

.bricks-form__label input[type="radio"] {
  margin: 0px 0px 4px -1.33em;
  height: 20px;
  width: 20px;
  border: 1px solid #999;
  vertical-align: middle;
}

在此处输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM