Radio Fields

Is there a way to make the radio fields appear on the site as one on top of another?


So, instead of [radio], [radio], [radio], [radio]


I would like it to appear like...

[radio]

[radio]

[radio]

[radio]

On which page would i do this? I do not see any .html pages to be able to modify looks, etc.

Thank You!

Quote · 14 Jan 2010

You can change this settings here(will change join and edit page):

File: templates/base/scripts/BxBaseFormView.php


Find this function (line ~966): function genInputRadioSet(&$aInput) {

and edit this code (line ~987) from: if (count($aInput['values']) > 3 && $sDivider == ' ')

TO: if (count($aInput['values']) > 1 && $sDivider == ' ')

------

We also need to make some free space between the lines

open file templates/base/css/forms_adv.css

and find this code (line ~288-292)

.form_input_radio,
.form_input_checkbox {
margin-top: 0px;
margin-bottom: 0px;
}

Add height to this code,


.form_input_radio,
.form_input_checkbox {
margin-top: 0px;
margin-bottom: 0px;
height: 18px;
}

Quote · 14 Jan 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.