Welcome

This documentation is going to assume you know how to edit HTML, since you bought an html template, and just show you some of the things specific to this template.

Templates

Edit these templates to suit your needs.

Contact Form

Contact form setup is simple. In contact.php in the main folder, add your email address to the your email ..

<?php
	#Your e-mail address
	define("__TO__", "youremail@gmail.com");

	#Message subject
	define("__SUBJECT__", "");

	#Success message
	define('__SUCCESS_MESSAGE__', "Your message has been sent. Thank you!");

	#Error message 
	define('__ERROR_MESSAGE__', "Error, your message hasn't been sent");

	#Messege when one or more fields are empty
	define('__MESSAGE_EMPTY_FILDS__', "Please fill out  all fields");
	?>

Feel free to format the email any way you wish (requires some php knowledge).

Google Map

By Default the google map is located in New Yor, you can ad you desired location by just addin the right addres and add in the field that says "data-address="New York"".

<div class="wpb_wrapper">
    <div id="map-canvas" class="thememove-gmaps" data-address="New York" data-height="480" data-width="100%" data-zoom_enable="" data-zoom="7" data-map_type="roadmap" data-map_style="style1"></div>
</div>