Hi,
Please make a backup and open up class-form-generator.php located in /framework/php/ directory and find lines 236-238 which look like
$this->elements_html .= "<p class='".$p_class."' id='element_$id'>";
$this->elements_html .= ' <select name="'.$id.'" class="select '.$element_class.'" id="'.$id.'">'.$select.'</select><label for="'.$id.'">'.$element['label'].$required.'</label>';
$this->elements_html .= "</p>";
and change them to look like
$this->elements_html .= "<p class='".$p_class."' id='element_$id'>";
$this->elements_html .= ' <label for="'.$id.'">'.$element['label'].$required.'</label><select name="'.$id.'" class="select '.$element_class.'" id="'.$id.'">'.$select.'</select>';
$this->elements_html .= "</p>";
You can also add this css to change the width of the select box to make it equal to the other fields
select, .ajax_form .select, .entry-content select, .mobileMenu
{
min-width: 230px;
}
Thanks,
Nick