asp.netvb.netwebformsradio-buttonradiobuttonlist

RadioButtonList without the Radio Button Circle?


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!


Solution

  • 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>