> From: Marcelo Wolfgang [mailto:[EMAIL PROTECTED] > Can anyone help me figure out why IE is acting so weird about > the radio buttons on this page ? > http://work.grillo.tk/gaiolla/checkout_shipping.html
Sure. > From: Micky Hulse [mailto:[EMAIL PROTECTED] > Just quickly looking-over you code, I see this as a potential prob: > > html, body, form, fieldset, select, a, input{ > padding:0px; > margin:0px; > font:10px Verdana, Arial, Helvetica, sans-serif; > color:#000000; > height: 100%; > } Micky was on the money & I can confirm this is the culprit. Modifying your body rule to the following: html, body { padding:0px; margin:0px; font:10px Verdana, Arial, Helvetica, sans-serif; color:#000000; height: 100%; } and viewing in Firefox through an ie tab resolves the issue. Like Micky I didn't take an in-depth look at your code, but is there any particular reason you are using height:100% on the body? If the answer is no then remove that also, since, unless you're experimenting with sticky footers or vertical/horizontal centering, it's generally not required. Also, 10px for a body rule is rather small, and just as a FYI, the following might prove an interesting read if you have the time. http://css-discuss.incutio.com/?page=FontSize HTH Mark -- This message has been scanned for viruses and dangerous content by ISPNZ's automated virus detection system, and is believed to be clean. ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
