Thank you very much for purchasing from Affapress.
If you have any issues or questions that this documentation does not cover, you can send us a message to support@affapress.com.
You can get more updates documentation here!
Template Installation
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 from your text editor.
All of the HTML files are given a descriptive name to make it easier to distingish what each file will display.
Upload to The Server
- It's important to understand that you must either have your own server space or use someone elses. The server space can be purchased at many different places around the internet. You need somewhere to put the files that you purchased so others can find them online.
- Select /html/ folder, then choose layout which you want, and there will have several files with the extension labeled .html. This is where all your content will. In addition to .html you should see a file labeled .css. The .css files are going to be the files that will tell the .html how to to be styled. CSS is simply a way to take text, images, and other elements and change the look of them. It's very important to keep the .css file with the HTML or the HTML will not look how the design is meant to look. Along with the HTML and CSS files, you will also have five additional folders to upload: css, fonts, images, js and mailchimp.
- Start your FTP client (I persoanlly use Filezilla which is free) and login. Login to your server. You will need your server name (often times this will be your domain name), username, and password that you setup with the hosting company.
- Locate the domain folder you wish to upload your template files to on your server. You are going to want to click and drag every file that you have labeled .html, .css, .js into your FTP client.
- Once the files are done uploading, you can try access your website via browser.
Change The Template Color
It's easy to change color of this template, you just need to change the a line code below:
- Open the .html file (example index.html).
- Find this line of code in <head> section:
<!-- Custom Colors --> <!--<link rel="stylesheet" href="css/colors/green/color.css">--> <!--<link rel="stylesheet" href="css/colors/orange/color.css">--> <!--<link rel="stylesheet" href="css/colors/pink/color.css">--> <!--<link rel="stylesheet" href="css/colors/purple/color.css">--> <!--<link rel="stylesheet" href="css/colors/yellow/color.css">-->
- Choose your favorite color with remove one of the comment tag like this:
<!-- Custom Colors --> <!--<link rel="stylesheet" href="css/colors/green/color.css">--> <link rel="stylesheet" href="css/colors/orange/color.css"> <!--<link rel="stylesheet" href="css/colors/pink/color.css">--> <!--<link rel="stylesheet" href="css/colors/purple/color.css">--> <!--<link rel="stylesheet" href="css/colors/yellow/color.css">-->
- Save and see the result!
HTML Structure
This site template has a fixed layout with a variation of column layouts depending on the page. This template uses the 1170 grid system (12 columns) which will help streamline any customization you wish to make. If you're unfamiliar with the 1170 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 12 columns in length. For example, the '#main' element has a class of 'col-sm-8' and the '#side' element has a class of 'col-sm-4'. The total columns equals 12 columns.
<div class="container"> <div class="row"> <div id="main" class="col-sm-8"></div> <div id="side" class="col-sm-4"></div> </div> </div>
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 /css/style.css :
.navbar { text-align:center; }
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 .navbar { text-align:center; }
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.
Site Logo
You can change the main site logo with change this code:
<div class="navbar-brand"> <a href="index.html"><img src="images/logo.png" alt="Logo"></a> <!-- site logo --> </div>
Main Navigation
You can change the main site navigation with change this code:
<ul class="nav navbar-nav"> <li><a href="#header" class="smooth-scroll">Home</a></li> .... <li class="menu-btn"><a href="page.html">Page</a></li> </ul>
Header Content
In this section you can change the template header content elements.
Header Layout 1:
<!-- .header-content --> <div class="header-content"> <!-- .container --> <div class="container"> <!-- .row --> <div class="row header-row"> <div class="col-sm-7 col-md-8 col-lg-7"> <div class="header-txt"> <h1>....</h1> <p>....</p> </div> <div class="header-btn"> <a href="#" class="btn-custom">....</a> <a href="#download" class="btn-custom btn-border btn-icon smooth-scroll"><i class="ion ion-ios-cloud-download-outline"></i> ....</a> </div> </div> <div class="col-sm-5 col-md-4 col-lg-offset-1 header-img"> <div class="carousel-slider header-slider animation" data-animation="animation-fade-in-down"> <div><img src="images/content/sliders/1.jpg" alt="Image 1"></div> .... </div> </div> </div> <!-- .row end --> </div> <!-- .container end --> </div> <!-- .header-content end -->
Header Layout 2:
<!-- .header-content --> <div class="header-content bg-color"> <!-- .container --> <div class="container"> <div class="header-txt"> <h1>....</h1> </div> <div class="header-btn"> <a href="#download" class="btn-custom btn-border btn-icon smooth-scroll"><i class="ion ion-ios-cloud-download-outline"></i> ....</a> </div> <figure class="header-img"> <div class="img-left"> <img src="images/content/landing/header-img-left.png" alt="Image Left" class="animation" data-animation="animation-fade-in-left"> </div> <div class="img-center"> <img src="images/content/landing/header-img-center.png" alt="Image Center" class="animation" data-animation="animation-fade-in-down" data-delay="400"> </div> <div class="img-right"> <img src="images/content/landing/header-img-right.png" alt="Image Right" class="animation" data-animation="animation-fade-in-right"> </div> </figure> </div> <!-- .container end --> </div> <!-- .header-content end -->
Header Layout 3:
<!-- .header-content --> <div class="header-content"> <!-- .container --> <div class="container"> <!-- .row --> <div class="row header-row"> <div class="col-sm-7 col-md-8 col-lg-7"> <div class="header-txt"> <h1>....</h1> <p>....</p> </div> <div class="header-btn"> <a href="#" class="btn-custom">....</a> <a href="#download" class="btn-custom btn-border btn-icon smooth-scroll"><i class="ion ion-ios-cloud-download-outline"></i> ....</a> </div> </div> <div class="col-sm-5 col-md-4 col-lg-offset-1 header-form-wrap"> <div class="header-form"> <div class="submit-status"></div> <!-- submit status --> <h4>....</h4> <form method="post" action="#" class="affa-form-signup"> <input type="text" name="name" placeholder="Your Name"> <input type="text" name="email" placeholder="Email Address *"> <input type="text" name="phone" placeholder="Phone Number"> <label for="terms_agree"><input type="checkbox" name="terms_agree" id="terms_agree"> ....</label> <div class="form-submit"> <input type="submit" name="submit" value="Send Me This App!" class="btn-border"> </div> </form> </div> </div> </div> <!-- .row end --> </div> <!-- .container end --> </div> <!-- .header-content end -->
Header Layout 4:
<!-- .header-content --> <div class="header-content"> <!-- .container --> <div class="container"> <div class="header-txt"> <h1>....</h1> <p>....</p> </div> <div class="row header-countdown"> <div class="col-sm-3 col-countdown"> <!-- days --> <h4>{dn}</h4> <p>{dl}</p> </div> <div class="col-sm-3 col-countdown"> <!-- hours --> <h4>{hn}</h4> <p>{hl}</p> </div> <div class="clearfix visible-xs-block"></div> <!-- clearfix --> <div class="col-sm-3 col-countdown"> <!-- minutes --> <h4>{mn}</h4> <p>{ml}</p> </div> <div class="col-sm-3 col-countdown"> <!-- seconds --> <h4>{sn}</h4> <p>{sl}</p> </div> </div> <div class="header-form"> <h4 class="header-form-heading">....</h4> <div class="header-form-body"> <form method="post" action="#" class="affa-form-subscribe"> <input type="text" name="email" placeholder="Email address...."> <input type="submit" name="submit" value="Subscribe" class="btn-border"> </form> <p class="txt-desc">....</p> </div> </div> </div> <!-- .container end --> </div> <!-- .header-content end -->
Feature Elements
In this section you can change the features list offered by your app/product.
Feature Icon Text:
<!-- .row --> <div class="row"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-feature-icon"> <i class="ion ion-android-chat"></i> <h4>....</h4> <p>....</p> <a href="#" class="link-more">....</a> </div> </div> .... </div> <!-- .row end -->
Feature Icon Left Text:
<!-- .row --> <div class="row"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-feature-icon-left"> <i class="ion ion-happy-outline"></i> <h4>....</h4> <p>....</p> </div> </div> .... </div> <!-- .row end -->
Feature Icon Left Text 2:
<!-- .row --> <div class="row"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-feature-icon-left2"> <i class="ion ion-android-alarm-clock"></i> <h4>....</h4> <p>....</p> </div> </div> .... </div> <!-- .row end -->
Note: You can see the complete list of font icons here!
Feature Column Text:
<!-- .row --> <div class="row"> <div class="col-sm-8 col-md-5 col-sm-offset-2 col-md-offset-0 margin-bottom40"> <figure class="img-layers img-layer-right-front"> <div class="img-layer-left"> <img src="images/content/landing/feature-4.png" alt="Image Left" class="animation" data-animation="animation-fade-in-left"> </div> <div class="img-layer-right"> <img src="images/content/landing/feature-5.png" alt="Image Right" class="animation" data-animation="animation-fade-in-right" data-delay="400"> </div> </figure> </div> <div class="col-sm-10 col-md-7 col-lg-6 col-sm-offset-1 col-md-offset-0 col-lg-offset-1"> <div class="text-wrap40 text-center-sm text-center-xs"> <div class="post-heading-left"> <h2>....</h2> </div> <p class="margin-bottom30">....</p> <div class="affa-feature-icon-left margin-bottom30"> <!-- 1 --> <i class="ion ion-happy-outline"></i> <h4>....</h4> <p>....</p> </div> .... </div> </div> </div> <!-- .row end -->
Video Image Elements
In this section you can display your video demos of your app/product.
<!-- .row --> <div class="row"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-video-img animation" data-animation="animation-fade-in-down"> <a href="https://www.youtube.com/embed/4ZawV1mXlS8?autoplay=1" class="fancybox-media" title="Play Video" data-fancybox-group="videos_gallery"> <figure> <img src="images/content/works/1.jpg" alt="Image"> <div class="video-img-masked"></div> </figure> </a> <div class="video-img-txt"> <h4>How to sent the chat?</h4> <p>03:40</p> </div> </div> </div> .... </div> <!-- .row end -->
Testimonials Carousel Element
In this section you can change the testimonials list from your customers about your app/product.
<!-- .affa-testimonials-carousel --> <div class="affa-testimonials-carousel"> <div class="carousel-slider"> <div class="slick-slide"> <!-- 1 --> <div class="affa-testimonial"> <div class="testimonial-name"> <img src="images/content/avatars/1.jpg" alt="Avatar"> <h4>....</h4> <p>....</p> </div> <div class="testimonial-txt"> <p>....</p> </div> <div class="testimonial-rate"> <span class="testimonial-rate-val" style="width:100%;">5</span> </div> </div> </div> .... </div> </div> <!-- .affa-testimonials-carousel end -->
Screenshots Carousel Element
In this section you can change the screenshots list of your app/product.
<div class="carousel-slider gallery-slider animation" data-animation="animation-fade-in-down"> <div class="slick-slide"> <!-- 1 --> <div class="img-hover"> <h4>....</h4> <a href="images/content/screenshots/1.jpg" class="fancybox" data-fancybox-group="images_gallery" title="Account Login Form"> <figure> <img src="images/content/screenshots/1.jpg" alt="Account Login Form"> <div class="hover-masked"></div> </figure> </a> </div> </div> .... </div>
Pricing Table Element
In this section you can show the plans and pricing for the services provided by your app/product.
<!-- .affa-tbl-pricing --> <div class="affa-tbl-pricing"> <div class="row"> <div class="col-sm-3 tbl-prc-col"> <!-- 1 --> <div class="tbl-prc-wrap animation" data-animation="animation-fade-in-up"> <div class="tbl-prc-header"> <i class="ion ion-ios-chatboxes-outline"></i> <h4>....</h4> <p>....</p> </div> <div class="tbl-prc-price"> <h4>....</h4> <p>....</p> </div> <div class="tbl-prc-footer"> <a href="#" class="btn-custom">....</a> </div> </div> </div> .... </div> </div> <!-- .affa-tbl-pricing end -->
Counter Text Elements
In this section you can display your downloads, customers, likes etc of your app/product.
<!-- .row --> <div class="row"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-counter-txt"> <h4>....</h4> <i class="ion ion-ios-cloud-download-outline"></i> <p>....</p> </div> </div> .... </div> <!-- .row end -->
Call-to-Action Element
In this section you can show your app download buttons (Play Store & App Store).
<!-- #download --> <div id="download" class="bg-color bg-parallax" data-parallax="scroll" data-speed="0.2" data-natural-width="1920" data-natural-height="1080" data-image-src="images/content/bg/2.jpg"> <!-- .bg-overlay --> <div class="bg-overlay container-padding120 text-center"> <!-- .container --> <div class="container"> <div class="post-heading-center no-border margin-bottom30"> <h2>....</h2> </div> <p class="text-big text-padding margin-bottom0">....</p> <div class="margin-top40 animation" data-animation="animation-fade-in-down"> <a href="#" title="Download from App Store" class="btn-appstore">....</a> <a href="#" title="Download from Play Store" class="btn-playstore">....</a> </div> </div> <!-- .container end --> </div> <!-- .bg-overlay end --> </div> <!-- #download end -->
Client Elements
In this section you can display your client logos.
<!-- .row --> <div class="row"> <div class="col-sm-3"> <!-- 1 --> <div class="affa-client-logo animation" data-animation="animation-fade-in-down"> <img src="images/content/clients/1.png" alt="Logo"> </div> </div> .... </div> <!-- .row end -->
Footer Elements
In this section you can change your company contact details, social media links and copyright text with your own name or company:
<!-- #footer --> <footer id="footer"> <!-- #contact --> <div id="contact" class="container-padding8060"> <!-- .container --> <div class="container"> <div class="post-heading-center"> <p>....</p> <h2>....</h2> </div> <!-- .row --> <div class="row padding-bottom20"> <div class="col-sm-4"> <!-- 1 --> <div class="affa-contact-info"> <div class="contact-info-heading"> <p>....</p> </div> <i class="ion ion-ios-telephone-outline"></i> <h4>....</h4> </div> </div> .... </div> <!-- .row end --> <div class="row"> <div class="col-md-10 col-lg-8 col-md-offset-1 col-lg-offset-2"> <form action="#" method="post" class="affa-form-contact"> <div class="submit-status"></div> <!-- submit status --> <input type="text" name="name" placeholder="Your Name"> <input type="text" name="email" placeholder="Email Address *"> <textarea name="message" placeholder="Message *"></textarea> <div class="form-contact-submit"> <label for="send_copy"><input type="checkbox" name="send_copy" id="send_copy"> ....</label> <input type="submit" name="submit" value="Send Message" class="btn-border"> </div> </form> </div> </div> </div> <!-- .container end --> </div> <!-- #contact end --> <!-- .footer-txt --> <div class="footer-txt"> <!-- .container --> <div class="container"> <div class="footer-logo"><img src="images/logo_footer.png" alt="Logo"></div> <!-- site logo --> <div class="footer-copyright"> <p class="copyright-txt">....</p> <div class="socials"> <a href="#" title="Facebook"><i class="ion ion-social-facebook"></i></a> .... </div> </div> </div> <!-- .container end --> </div> <!-- .footer-txt end --> <a href="#" class="scrollup" title="Back to Top!"><i class="ion ion-ios-arrow-up"></i></a> </footer> <!-- #footer end -->
Note: You can see the complete list of font icons here!
Ionicons Icon Packs
You can also use built in icon packs in this template, all icons use CSS Font feature, so you can edit and give color to the icon easily. For referrences to easier you use all icons you can visit here!
CSS Structure
I'm using one main CSS file (/css/style.css), in this template which you are free to modify depending on the customization you require. There are also 8 additional style sheets that I do not recommend changing. Those style sheets reside in the /css/ folder. Below are 8 additional CSS files:
- bootstrap.min.css - This is a main stylesheet that required for basic template styling like grid, form, input and web elements.
- ionicons.min.css - CSS stylesheets for font icon packs.
- jquery.fancybox.css - This stylesheet used for styling the images gallery popup.
- no-js.css - This stylesheet will be enabled if your browser don't support javascript.
- ie-older.css - This stylesheet will be enabled if you use Internet Explorer 7 and below.
- animate.min.css - This stylesheet use for styling the animation effects.
- slick.css - This stylesheet use for styling all the web carousel elements.
- slick-theme.css - Add additional styling to make Slick Slider look more beautiful.
The main CSS file (/css/style.css) contains all of the specific stylings for the page. The file was divided into several sessions as below:
/* ========================= Site Styles ========================= */ General styles for all web elements /* ========================= Header ========================= */ CSS styles for the header section /* ========================= Elements ========================= */ CSS styles for specific web elements /* ========================= Footer ========================= */ CSS styles for the bottom section /* ========================= Media Queries ========================= */ CSS styles for support all kinds of different screen sizes
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.
Scripts
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.
PHP Integration
This template use the PHP engine for activate contact & signup proses. Through the contact form a message will direct send to your email address. Then for the signup form a message will send to guest/visitor and your email address. So you can edit your email address in process-contact.php and process-signup.php file.
$my_email = 'support@affapress.com'; // Change with your email address
This template also use the PHP engine for subscribe form has supported with MailChimp integration. To activate this integration you must make some adjusment to several php files.
Required: You has already signed in mailchimp.com and was familiar with the features provided by the MailChimp.
To adjust the MailChimp integration, follow this instruction:
- Open the /mailchimp/config.inc.php file.
- Change $apikey variable with your MailChimp API Key, you can see in http://admin.mailchimp.com/account/api
- Also write your MailChimp List ID in $listId variable. To get the List ID, login to your MailChimp account » select one of the list that has been created » go to Settings menu » List name & defaults.
Image Files
The following Photoshop files are included with download package file, all the files place in /psd/ folder.
- index.psd
In addition to several assets you can download it for free through the links below:
Credits
Once again, thank you so much for purchasing this template. 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 email or social media. I'll do my best to assist!