One way to do this, could be done by changing search.inc.php...
Add a div to this line:
Code:
$class_checkbox .= '<input name="pclass[]" value="' . $class_id . '" type="checkbox" id="class' . $x . '" onClick="SearchClassUnCheckALL()" />' . $class_name . '<br />';
like this:
Code:
$class_checkbox .= '<div class="pclass_searching"><input name="pclass[]" value="' . $class_id . '" type="checkbox" id="class' . $x . '" onClick="SearchClassUnCheckALL()" />' . $class_name . '<br /></div>';
then in your style sheet add something like:
Code:
.pclass_searching {float:left; width:30%; }
then in your search_class_default.html file, change
Code:
{property_class_checkboxes}
<br />
to
Code:
{property_class_checkboxes}
<br style="clear:both;" />
Bookmarks