Hi,
I think there has been a misunderstanding. The CONTACT page is working fine within the tool.
The SUBMIT NEWS form, which is activated by clicking on the SUBMIT NEWS link is having the issues. The form was modified by me by changing the submit_news.php file. Basically I just needed to rename a few fields and add a few. It works fine when activated in Firefox, but in Chrome the SEND button is missing, and in IE the last field and the SEND button is missing. Please help!!!!
Here is the code for that page:
<div id ="newswrapper">
<form action="" method="post" class="news_form">
<fieldset><?php if (!isset($errorC) || $errorC == true){ ?><h3><span>Submit A Temecula Business Listing</span></h3>
<p class="<?php if (isset($the_nameclass)) echo $the_nameclass; ?>" ><label for="name">Business Name*</label><input name="yourname" class="text_input is_empty" type="text" id="name" size="20" value='<?php if (isset($the_name)) echo $the_name?>'/>
</p>
<p class="<?php if (isset($the_emailclass)) echo $the_emailclass; ?>" ><label for="email">Business E-Mail*</label><input name="email" class="text_input is_email" type="text" id="email" size="20" value='<?php if (isset($the_email)) echo $the_email ?>' /></p>
<p><label for="website">Business Website URL*</label><input name="website" class="text_input is_empty" type="text" id="website" size="20" value="<?php if (isset($the_website)) echo $the_website?>"/></p>
<p><label for="businessPhone">Business Phone</label><input name="businessPhone" class="text_input" type="text" id="businessPhone" size="20" value="<?php if (isset($url)) echo $url?>"/></p>
<label for="businessAddress" class="blocklabel">Business Address</label>
<p class="<?php if (isset($the_messageclass)) echo $the_messageclass; ?>"><textarea name="businessAddress" class="text_area is_empty" cols="40" rows="7" id="businessAddress" ><?php if (isset($the_message)) echo $the_message ?></textarea></p>
<p><label for="imageURL">Link to Image URL</label><input name="imageURL" class="text_input" type="text" id="imageURL" size="20" value="<?php if (isset($url)) echo $url?>"/></p>
<label for="message" class="blocklabel">Business Description</label>
<p class="<?php if (isset($the_messageclass)) echo $the_messageclass; ?>"><textarea name="message" class="text_area is_empty" cols="40" rows="10" id="message" ><?php if (isset($the_message)) echo $the_message ?></textarea></p>
<p>
<input type="hidden" id="myemail" name="myemail" value="<?php echo $email_adress_reciever; ?>" />
<input type="hidden" id="myblogname" name="myblogname" value="<?php echo $name_of_your_site; ?>" />
<input name="Send" type="submit" value="Send" class="button" id="send" size="16"/></p>
<?php } else { ?>
<p><h3>Your Business Listing has been sent!</h3> Thank you!</p>
<?php } ?>
</fieldset>
</form>
<?php