Hi everybody,
I bought a mercury template #26894 and i just finish editing everything inside but i have the contact form and the newsletter subscription on stand by because i don't know how to enable both.
I don't know nothing about html am new with all these but before i bought the template the support guy told me it will be very easy.
If you can help me enable the contact form so i can receive the information to my email.
On html i see this code
<h3>Contact Form </h3>
<form id="ContactForm" action="" enctype="multipart/form-data">
<div><label><input type="text" onblur="if(this.value=='') this.value='Your Name:'" onfocus="if(this.value =='Your Name:' ) this.value=''" value="Your Name:"/></label>
<label><input type="text" onblur="if(this.value=='') this.value='Company:'" onfocus="if(this.value =='Company:' ) this.value=''" value="Company:"/></label>
<label><input type="text" onblur="if(this.value=='') this.value='E-mail:'" onfocus="if(this.value =='E-mail:' ) this.value=''" value="E-mail:"/></label>
<textarea onblur="if(this.value=='') this.value='Message:'" onfocus="if(this.value =='Message:' ) this.value=''" cols="25" rows="7">Message:</textarea>
<p class="btn fright">
<a onclick="document.getElementById('ContactForm').reset()" href="#">Reset</a>
<a onclick="document.getElementById('ContactForm').submit()" href="#">Submit</a>
</p></div>
</form>
- <h3>Contact Form </h3>
-
- <form id="ContactForm" action="" enctype="multipart/form-data">
- <div><label><input type="text" onblur="if(this.value=='') this.value='Your Name:'" onfocus="if(this.value =='Your Name:' ) this.value=''" value="Your Name:"/></label>
- <label><input type="text" onblur="if(this.value=='') this.value='Company:'" onfocus="if(this.value =='Company:' ) this.value=''" value="Company:"/></label>
- <label><input type="text" onblur="if(this.value=='') this.value='E-mail:'" onfocus="if(this.value =='E-mail:' ) this.value=''" value="E-mail:"/></label>
- <textarea onblur="if(this.value=='') this.value='Message:'" onfocus="if(this.value =='Message:' ) this.value=''" cols="25" rows="7">Message:</textarea>
- <p class="btn fright">
- <a onclick="document.getElementById('ContactForm').reset()" href="#">Reset</a>
- <a onclick="document.getElementById('ContactForm').submit()" href="#">Submit</a>
- </p></div>
- </form>
on the newsletter i see this
<div class="newsletter">
<h3>Newsletters</h3>
<form id="newsletter" action="" enctype="multipart/form-data">
<div>
<input type="text" onblur="if(this.value=='') this.value='Enter your e-mail please'" onfocus="if(this.value =='Enter your e-mail please' ) this.value=''" value="Enter your e-mail please"/>
<a href="#">go!</a>
</div>
</form>
- <div class="newsletter">
- <h3>Newsletters</h3>
- <form id="newsletter" action="" enctype="multipart/form-data">
- <div>
- <input type="text" onblur="if(this.value=='') this.value='Enter your e-mail please'" onfocus="if(this.value =='Enter your e-mail please' ) this.value=''" value="Enter your e-mail please"/>
- <a href="#">go!</a>
- </div>
- </form>
Thanks for your help!
Moderator Remark: Added [code] tags