Omar Juvera
Omar Juvera

Reputation: 12297

Radio Buttons are hidden and won't show

ALREADY followed the suggested solutions from Radio button is not showing in safari and chrome and did not solve the problem

This problem is not covered in that question


I am using WordPress and the theme is having an issue where radio buttons to not show up See this sample page: http://weedsdeliver.com/test.html

Already tried

This problem is persistent in all browsers.

Upvotes: 0

Views: 1497

Answers (2)

DCR
DCR

Reputation: 15665

you should learn how to inspect the html of your webpage in the chrome browser. If you did you will see the following:

input[type=checkbox], input[type=radio] {
height: 19px;
opacity: 0;
width: 20px;
}

if you change the opacity to 1 the radio buttons will appear.

input[type=checkbox], input[type=radio] {
opacity: 1;
}

There are some plugins for wordpress that will let you easily modify the css. If you need more help, comment back to me.

Upvotes: 2

m4n0
m4n0

Reputation: 32275

There is a style property opacity on all input radio elements in this file. Remove it or change the value to 1.

enter image description here

Upvotes: 1

Related Questions