RadioButtonList without the Radio Button Circle?

Erx_VB.NExT.Coder picture Erx_VB.NExT.Coder · Jan 8, 2010 · Viewed 8.4k times · Source

basically, i just want the RadioButtonList without the radio button on it, i will code the rbl so that selected items have a different background color and make it look more professional, the radio buttons themselves i want to be able to get rid of in terms of apperance... if you know of any way to do it, please do let me know!

Answer

tillinberlin picture tillinberlin · Jan 8, 2010

this helped me a lot: http_://www.ryanfait.com/resources/custom-checkboxes-and-radio-buttons/

This link is broken, the original owner is.. forever offline, so the content

Perhaps for any of you reading this, can try to set the background to none in the input in the css

<style>
   input {
      background:none !important;
   }
</style>