Afternoon All, hoping someone out there can help me with some html. I have a form that has 5 options. Instead of text labels, I am using pictures. What I want to do is essentially hide the actual radio button circle and have people click on the picture to select that option.
I've attached my html and currently, if they select the picture nothing happens, they still have to click on the actual radio button. How can I connect the label with the radio button?
<p align="center"> <div id="container"> <div> <label> <input name="Category" type="radio" value="Trust"> <img src="http://svr/Forms//img/Theme/Awardco/Trust1.png"> </label> <label><input name="Category" id="Commitment" type="radio" value="Commitment"> <imgsrc="http://svr/Forms//img/Theme/Awardco/Commitment1.png"> </label> <label><input name="Category" id="Value" type="radio" value="Value"> <img src="http://svr/Forms//img/Theme/Awardco/Value1.png"> </label> <label><input name="Category" id="Innovation" type="radio" value="Innovation"> <img src="http://svr/Forms//img/Theme/Awardco/Innovation1.png"> </label> <label><input name="Category" id="Excellence" type="radio" value="Excellence"> <img src="http://svr/Forms//img/Theme/Awardco/Excellence1.png"> </label> </div></div>