简体   繁体   中英

Radio button is not being displayed in a form

I use a external form to collect lead on my blog based on 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).

The problem is in the question (in portuguese):

"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.

Anyone can help me?

Regards, Eduardo

It's a pure css issue. Add the following properties to the below class.

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

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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