I'm having a templating problem that I have narrowed down to my plugins. If you go to this page you can see the problem I am having (see the extra threadfields section):
http://www.onereef.com/forums/search.php
The check boxes do not line up well with the words they represent.
This is the code in the plugin that needs to be altered but I have no clue what it means.
Code:
if ($threadfield['type'] == checkbox)
{
$checkboxes = explode("\n", $threadfield['options']);
$numoptions = 0;
unset($checkboxstr);
$alloptions = explode(", ", $threadinfo['field' . $fieldid]);
foreach($checkboxes AS $checkbox)
{
unset($checkboxselected);
if (in_array(trim($checkbox), $alloptions)) {
$checkboxselected = "checked=\"checked\"";
}
$checkboxstr .= "$checkbox<input type=\"checkbox\" name=\"fields[$threadfield[fieldid]][$numoptions]\" value=\"$checkbox\" $checkboxselected />";
$numoptions++;
}
Does anyone know how I would tweak it to make it look better. Ideally I'd like it to be in 3 columns, but I'd settle for the checkboxes to be closer to the words they represent.
Hope someone can help.
John