Nasty squares around radio buttons

liunx

Guest
I used to know the fix for that a long time ago.<br />
<br />
Something to do with form tags not getting along with font tags...<br />
<br />
Can someone refresh my memory about how to fix this?<!--content-->Care to post your code? I think it has to do with a background color setting.<!--content-->Hi,<br />
<br />
Ok, I fixed the problem by forcing the radio button input tag to behave, with the help of some css properties.<br />
<br />
I can't remember exactly why form tags which contain font tags mess up radio buttons, but I do remember that it does have to do with the combination of the two.<br />
<br />
Anyways, this css inside the radio button input tag will work;<br />
<br />
background-color:#(same as surrounding color);<br />
border-top:0px; border-left:0px; etc... (short form won't work here)<br />
<br />
And that should do it. It worked for me :cool:<!--content-->
 
Back
Top