Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author hoffcamp

    (@hoffcamp)

    If you make a ‘list’ element, you can change the style to radio buttons.

    Thread Starter afrikarma

    (@afrikarma)

    Great, that works. thanks! Any way of putting a simple yes / no radio button side by side rather than one below the other?

    Plugin Author hoffcamp

    (@hoffcamp)

    You can do that with CSS, in your theme, or somewhere else. The line breaks in the radio list are just ‘br’ tags, so you can disable them. You will also want to add a left margin to the radio button:

    .fm-form ul li br{
    	display:none;
    }
    .fm-form input[type='radio']{
    	margin-left:10px;
    }
    Thread Starter afrikarma

    (@afrikarma)

    Hey @hoffcamp that was very useful. I implemented it and it works very well! Thanks again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WordPress Form Manager] Radio Button’ is closed to new replies.