Here is my link:
http://www.just250.com/index.php?option=com_chronocontact&chronoformname=ProjectRequestForm
You will see as soon as you go to the site that the text boxes are not lined up and when you click a drop down, it shows all of the options as one option, even though I did not set it up that way using the wizard. I know I am not crazy, b/c I have done forms successfully before. Thanks for your help!
Here is the code:
http://www.just250.com/index.php?option=com_chronocontact&chronoformname=ProjectRequestForm
You will see as soon as you go to the site that the text boxes are not lined up and when you click a drop down, it shows all of the options as one option, even though I did not set it up that way using the wizard. I know I am not crazy, b/c I have done forms successfully before. Thanks for your help!
Here is the code:
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="{cf_title}" id="text_4" name="text_4" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Email</label>
<input class="cf_inputbox required validate-email" maxlength="150" size="30" title="{cf_title}" id="text_5" name="text_5" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Phone</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="{cf_title}" id="text_3" name="text_3" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Cell</label>
<input class="cf_inputbox" maxlength="150" size="30" title="{cf_title}" id="text_6" name="text_6" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">What is the best time to reach you?</label>
<input class="cf_inputbox" maxlength="150" size="30" title="{cf_title}" id="text_7" name="text_7" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 150px;">Do you currently have a website?</label>
<select class="cf_inputbox validate-selection" id="select_5" size="1" title="{cf_title}" name="select_5">
<option value="">Choose Option</option>
<option value="Yes,No,">Yes,No,</option>
</select>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">If yes, please enter URL</label>
<input class="cf_inputbox" maxlength="150" size="30" title="{cf_title}" id="text_8" name="text_8" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 150px;">Approx how many pages do you expect to have?</label>
<select class="cf_inputbox" id="select_10" size="1" title="{cf_title}" name="select_10">
<option value="">Choose Option</option>
<option value="5 or less,5-10,10+,">5 or less,5-10,10+,</option>
</select>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 150px;">Click Me to Edit</label>
<select class="cf_inputbox" id="select_10" size="1" title="{cf_title}" name="select_10">
<option value="">Choose Option</option>
<option value="option 1,option 2,option 3,">option 1,option 2,option 3,</option>
</select>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 150px;">Do you have a logo?</label>
<select class="cf_inputbox" id="select_11" size="1" title="{cf_title}" name="select_11">
<option value="">Choose Option</option>
<option value="Yes,No,Yes but I want a new one,">Yes,No,Yes but I want a new one,</option>
</select>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_button">
<input value="Submit" name="{cf_name}" type="submit" />
</div>
<div class="cfclear"> </div>
</div>