Styling radio buttons

I’ve been trying to locate this in theme editor, does anyone here know where this is? Thank you

You can use firebug and press F12, then you can inspect the html element and check the stylesheet settings for that eleement.
The name is sort of the same as in the stylesheet editor from scriptcase.

I tried looking around using firebug. it doesn’t seem to have an entry in the theme editor for just radio button. :frowning:

I found a workaround to do what I wanted…not sure this is the appropriate place to put the code but it works.

So, I want to style the radio button, in my form application, go to “programming” on the left side and create a php method (named “radiocss”. then I put the following code:

?>
<style>
input[type=“radio”] {
margin:0px 5px 0px 7px;
}
</style>
<?php

Now go to events and open “onLoad” then put the following code:

radiocss();

This technique does the job for me. :smiley: