Forums / Templates, Stylesheets, Page Layout / Radio Button Border IE

Radio Button Border IE

Locked
Results 1 to 2 of 2
This thread is locked. New replies are disabled.
25 Jan 2008, 12:39
#1
alja avatar

alja

New Zenner

Join Date:
Oct 2006
Posts:
19
Plugin Contributions:
0

Radio Button Border IE

Hi, I have a problem with the radio button, in ie explorer shows me a border with the same color as the background.... I thought about creating a specific css rule for them but I don't know where to apply it so it will cover all the radio buttons in the site. Any guide and help is apreciated.

Thanks.
27 Jan 2008, 13:25
#2
lockettpots avatar

lockettpots

New Zenner

Join Date:
Jan 2008
Posts:
10
Plugin Contributions:
0

Re: Radio Button Border IE

Give each radio button a class for example

<input id="some id" class="radio" name="some name" type="radio" value="some value" />

Then anywhere in your css put your rule

input .radio{

Rules go here

}

I think that should work

John