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 the main folder, add your email address to the to define("__TO__", "test@gmail.com");.

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

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

Google Map

To change google map to your coordinats,please go to contact.html, in the end of the page u will see this line of code:
				     (function() {
			            window.onload = function() {

			                var pinkParksStyles = "";

			                if (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) === 8) {

			                } else {
			                    var pinkParksStyles = [{
			                        stylers: [{
			                            invert_lightness: false
			                        }, {
			                            hue: "#fff"
			                        }, {
			                            saturation: -92
			                        }, {
			                            lightness: 5
			                        }]
			                    }, {
			                        featureType: "poi",
			                        elementType: "labels",
			                        stylers: [{
			                            visibility: "off"
			                        }]
			                    }, {
			                        featureType: "road",
			                        elementType: "labels",
			                        stylers: [{
			                            visibility: "on"
			                        }, {
			                            lightness: 20
			                        }]
			                    }, {
			                        featureType: "landscape",
			                        stylers: [{
			                            visibility: "off"
			                        }]
			                    }, {
			                        featureType: "transit.station",
			                        elementType: "labels",
			                        stylers: [{
			                            lightness: 100
			                        }]
			                    }, {
			                        featureType: "road.arterial",
			                        stylers: [{
			                            visibility: "on"
			                        }]
			                    }, {}];
			                }

			                var pinkMapType = new google.maps.StyledMapType(pinkParksStyles, {
			                    name: "Our Location"
			                });
			                var mapOptions = {
			                    zoom: 12,
			                    center: new google.maps.LatLng(34.020500, -118.300496),
			                    mapTypeControlOptions: {
			                        mapTypeIds: [google.maps.MapTypeId.ROADMAP, "pink_parks"]
			                    }
			                };
			                var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
			                map.mapTypes.set("pink_parks", pinkMapType);
			                map.setMapTypeId("pink_parks");

			                var image = "upload/pin-image.png";

			                var marker = new google.maps.Marker({
			                    position: new google.maps.LatLng(34.020500, -118.300496),
			                    map: map,
			                    icon: image
			                });
			            }
			        })();
				

see this line:center: new google.maps.LatLng(34.020500, -118.300496), so there are the coordinats that u need to change and u r good to go :D