format radio button label

W

web420dude

I'm using classes to format labels of text boxes and drop down boxes, but I'm
not able to change the format of the radio button labels. I'd like to call
one of my classes to format the text for the radio button labels, but I don't
seem to be able to change them by any mehod. Any ideas?
 
S

Steve Easton

Did you add the class ="classname" to the input tags for both buttons??

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
R

Ronx

<input type="radio" value="3" name="group" id="gp1"><label for="gp1"
class="labeltext">radio button label</label>
 
W

web420dude

ah hah!... that worked - thanks!

Ronx said:
<input type="radio" value="3" name="group" id="gp1"><label for="gp1"
class="labeltext">radio button label</label>
 
Top