If you have any issue or question that this document does not cover, you can contact us via email kiwolhubpages@gmail.com. You can get more update documentation here.
You can view this template in any web browser from your desktop computer. Because the files are written in HTML, you do not need an internet connection in order to display or edit the template.
The exception is the contact and subcribe process which functions based on the PHP coding language and requires a server to send messages.
All of the HTML files are given a descriptive name to make it easier to distingish what each file will display.
This site template has a fixed layout with a variation of column layouts depending on the page. This template uses the 960 grid system (16 columns) which will help streamline any customization you wish to make. If you're unfamiliar with the 960 grid system, be sure to read about it here.
The main structure of this site is wrapped in a 'container' div. Inside of that div you will find each major section of the site given an appropritae grid size all equalling 16 columns in length. For example, the 'main' div has a class of 'sixteen columns'. The total columns equals 16 columns.
<div id="main" class="sixteen columns">
<!-- Main styles here -->
</div> <!-- End Main -->
If you would like to edit the color, font, or style of any elements in one of these columns, you would do the following in layout.css :
.logo {
margin-bottom:60px;
}
If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.
#header .logo {
margin-bottom:60px;
}
So, to ensure that your new styles are applied, make sure that they carry enough "weight" and that there isn't a style lower in the CSS file that is being applied after yours.
You can edit the top countdown text with change this code:
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="" title="" /></a>
</div> <!-- End Logo -->
You can make a countdown with this code:
<div class="countdown">
<!-- Days -->
<span class="count font-blue">
<span class="bigCount">{dn}</span>
<span class="smallCount">{dl}</span>
</span>
<!-- Hours -->
<span class="count font-green">
<span class="bigCount">{hn}</span>
<span class="smallCount">{hl}</span>
</span>
<!-- Minutes -->
<span class="count font-yellow">
<span class="bigCount">{mn}</span>
<span class="smallCount">{ml}</span>
</span>
<!-- Seconds -->
<span class="count font-pink">
<span class="bigCount">{sn}</span>
<span class="smallCount">{sl}</span>
</span>
</div> <!-- End Countdown -->
You can make a process bar with this code:
<div id="process_bar" class="sixteen columns" process-val="80">
<div class="bar">
<div class="text"></div>
</div>
</div> <!-- End Process Bar -->
You can change the social media links with your own with change this code:
<!-- Social media lists -->
<ul>
<li>....</li>
<li>....</li>
<li>....</li>
</ul>
You can change the details about you company with change this code:
<div class="one-third column about">
<!-- Header -->
<div class="logo">
<img src="images/logo2.png" alt="" title="" />
</div>
<p>....</p>
<p>....</p>
</div> <!-- End About -->
You can change the copyright with you own company copyright with change this code:
<div class="copyright">....</div> <!-- Copyright -->
I'm using one main CSS file (layout.css) in this template which you are free to modify depending on the customization you require. There are also two additional style sheets that I do not recommend changing. Those style sheets reside in the 'CSS' folder. The six additional style sheets are:
The main CSS file contains all of the specific stylings for the page. The file is separated into sections using:
/* #Site Styles
================================================== */
Main CSS styles are here
/* #Header
================================================== */
CSS styles for the header are here
/* #Main
================================================== */
CSS styles for main page (like posts, single post, slider) are here
/* #Footer
================================================== */
CSS styles for the footer are here
/* #Bottom
================================================== */
CSS styles for the bottom are here
/* #Additional
================================================== */
CSS styles for the additional styling are here
/* #Media Queries
================================================== */
CSS styles for the support off all device screen size are here
If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.
This theme uses several scripts many of which are documented within the theme's code. If you're a developer, you will find this particularly useful.
To change the countdown setting you can change this code (in <head> section):
date = new Date("01/01/2013"); // countdown end date set
To change the twitter username with your own, you can change this code (in <head> section):
username = "google"; // Your twitter username
To change the process bar you can change find this code and change with your own (change the data-perc attribute):
<div id="process_bar" class="sixteen columns" data-perc="80">
This template also use the PHP engine for activate the subcribe and contact us proses. All data about registered subcribers saved in /html/data. I use XML data format as a substitute for MySQL because I don't use any database. Your localhost or server must support with SimpleXMLElement to run this function.
But for contact us data direct send to your email address, so you can edit your email address in contact.php file.
$my_email = "youremail@domain.com"; // Your email address
/data/subcribers.xml
Contains all data about registered subcriber (the data used in XML format).
The following Photoshop file are included with the download package place in /psd folder with the name of countdown.psd.
Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. Please contact me via my author contact form. I'll do my best to assist!