HTML - Accessibility
Problem Solved
Similar TutorialsI am trying to make a form which has some Yes/No radio button options such as are you over 18? The code that I am using is shown below. Each radio button in the age group has a label next to it stating what the value of the button is. In addition to this I want to include the question "Are you over 18?" which I am presuming is another <label>. However what do i put for the for="???" bit because the two radio buttons which it is associated have different ids (ageY and ageN). Can someone advice me on how best to approach this problem in terms of accessibility please? Code: <fieldset> <legend>Personal Details</legend> <label for"???">Are you over 18?</label> <input type="radio" name="age" id="ageY" value="Yes" /> <label for="ageY">Yes</label> <input type="radio" name="age" id="ageN" value="No" /> <label for="ageN">No</label> </fieldset> Hi guys, I'm currently working on a site and the customer has asked if i can add a enlarge text feature. I am building the site with the Wordpress system but wanted to get some feedback on the best way to acheive this. Would i need to look for a wordpress plugin do you think? Or is there something out there i can just add into the page template its self. For example can i get something where i just post a simple javascript link into the wrodpress header on the template that allows the visitors to enlarge the text. This is the first time, i've been asked to do this so want to learn the correct way first time around. If it makes the question simplier forget about me using wordpress and if possible give me some ideas on how to do it with a static site. All feedback is appreciated always. Cheers CC_DESIGN A really good article by Lisa Herrod was posted on A List Apart this week... If you thought that you'd covered all accessibility angles with your graphical design - read this and find out how to cater for members of the Deaf community. |