Reputation: 12297
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
-webkit-appearance: radio;
display: inline;
background-color: #xxxxxx;
This problem is persistent in all browsers.
Upvotes: 0
Views: 1497
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