Willex - Photography Portfolio Template

Documentation


To edit the 'Home' section, simply find the appropriate label <!-- home section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- home section start -->
        [...]
                        <!-- section title start -->
                        <h1>
                            Willex
                        </h1><!-- section title end -->
                        [...]
                        [...]
                        <!-- sign up modal launcher start -->
                        [...]
                            <div class="the-button">
                                Newsletters
                            </div>
                        [...]<!-- sign up modal launcher end -->
                    [...]
            <!-- social icons start -->
            [...]
                    <li class="social-icon">
                        <a class="ion-social-twitter" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-facebook" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-googleplus" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-youtube" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-linkedin" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-instagram" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-pinterest" href="#"></a>
                    </li>
                    <li class="social-icon">
                        <a class="ion-social-dribbble" href="#"></a>
                    </li>
                [...]<!-- social icons end -->
            [...]
            <!-- copyright home start -->
            [...]
                <a class="link-underline link-underline-light" href="#">Willex</a> &copy; 2020 All Rights Reserved.
            [...]<!-- copyright home end -->
        [...]<!-- home section end -->
        [...]

To edit the 'Home' section text (Typed Text version), simply find and open the file named 'willex.js' placed in the folder named 'js'.

Part to edit:


[...]
// 6. typed text
    [...]
        strings: ["Fully Responsive", "Photography Portfolio", "Made for KINGS"],
        [...]
    [...]
[...]

You can edit the 'Home' section images according to the documentation bellow (please read Background Images section).

You can also edit the 'Home' section images by following its URL path: 'img/background/', and replace existing image files with your own images.

To edit the 'About' section, simply find the appropriate label <!-- about section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- about section start -->
        [...]
                        <!-- section TXT start -->
                        [...]
                            <p>
                                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
                            </p>
                        [...]<!-- section TXT end -->
                        [...]
                        <!-- section quote start -->
                        [...]
                                <span class="ion-quote"></span>
                            [...]<!-- section quote start -->
                    [...]<!-- about section end -->
        <!-- about info section start -->
        [...]
                                <!-- section title start -->
                                <div class="post-title post-title-first">
                                    Being around for
                                </div><!-- section title end -->
                                [...]
                                [...]
                                    <div class="parallax-years-content facts-counter-number">
                                        76
                                    </div>
                                [...]
                                [...]
                                <!-- section title start -->
                                <div class="post-title">
                                    Years
                                </div><!-- section title end -->
                                [...]
                                [...]
                            <!-- section TXT start -->
                            [...]
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
                                </p>
                            [...]<!-- section TXT end -->
                            [...]
                            <!-- section TXT start -->
                            [...]
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a <a class="link-underline" href="#">type specimen book</a>.
                                </p>
                            [...]<!-- section TXT end -->
                        [...]<!-- about info section end -->
                        
                        <!-- services skills section start -->
        [...]
                        <!-- page title start -->
                        <div class="post-title post-title-light">
                            Know-how
                        </div><!-- page title end -->
                        [...]
                            <!-- skill 1 start -->
                            <div class="skillbar" data-percent="100">
                                <span class="skillbar-title">Fashion</span>
                                [...]<!-- skill 1 end -->
                            <!-- skill 2 start -->
                            <div class="skillbar" data-percent="95">
                                <span class="skillbar-title">Fine-art</span>
                                [...]<!-- skill 2 end -->
                            <!-- skill 3 start -->
                            <div class="skillbar" data-percent="90">
                                <span class="skillbar-title">Documentary</span>
                                [...]<!-- skill 3 end -->
                            <!-- skill 4 start -->
                            <div class="skillbar" data-percent="85">
                                <span class="skillbar-title">Architectural</span>
                                [...]<!-- skill 4 end -->
                        [...]
                        <!-- page title start -->
                        <div class="post-title">
                            Languages
                        </div><!-- page title end -->
                        [...]
                            <!-- skill 1 start -->
                            <div class="skillbar" data-percent="100">
                                <span class="skillbar-title skillbar-title-dark">English</span>
                                [...]<!-- skill 1 end -->
                            <!-- skill 2 start -->
                            <div class="skillbar" data-percent="95">
                                <span class="skillbar-title skillbar-title-dark">German</span>
                                [...]<!-- skill 2 end -->
                            <!-- skill 3 start -->
                            <div class="skillbar" data-percent="90">
                                <span class="skillbar-title skillbar-title-dark">Italian</span>
                                [...]<!-- skill 3 end -->
                            <!-- skill 4 start -->
                            <div class="skillbar" data-percent="85">
                                <span class="skillbar-title skillbar-title-dark">Spanish</span>
                                [...]<!-- skill 4 end -->
                        [...]<!-- services skills section end -->       
        [...]

You can edit the 'About' section background images via CSS file (e.g. style.css).

Part to edit:


[...]
/* 1. TEMPLATE BACKGROUNDS */
[...]
/* 1.2. about IMG BACKGROUND */
.about-bg {
background-image: url(../img/about/about-bg.jpg);
}
[...]

You can also edit the 'About' section images by following its URL path: 'img/about/', and replace existing image files with your own images.

You can edit the 'About Skills' section background images via CSS file (e.g. style.css).

Part to edit:


[...]
/* 1. TEMPLATE BACKGROUNDS */
[...]
/* 1.3. services IMG BACKGROUND */
.services-bg-1 {
background-image: url(../img/services/services-bg-1.jpg);
}
.services-bg-2 {
background-image: url(../img/services/services-bg-2.jpg);
}
[...]

You can also edit the 'About Skills' section images by following its URL path: 'img/services/', and replace existing image files with your own images.

To edit the 'Services' section, simply find the appropriate label <!-- services section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- services section start -->
        [...]
                                <!-- section subtitle start -->
                                <h3 class="services-sub-header-dark">
                                    #1
                                </h3><!-- section subtitle end -->
                                [...]
                                <!-- page title start -->
                                <div class="post-title">
                                    Design
                                </div><!-- page title end -->
                                [...]
                                <!-- section TXT start -->
                                [...]
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-underline"
                                        href="#">ever since the 1500s.</a>
                                    </p>
                                [...]<!-- section TXT end -->
                            [...]
                        <!-- services item IMG start -->
                        <img alt="Services Img" class="img-cover" src="img/services/services-img-1.jpg"><!-- services item IMG end -->
                    [...]
                [...]
                                <!-- section subtitle start -->
                                <h3 class="services-sub-header">
                                    #2
                                </h3><!-- section subtitle end -->
                                [...]
                                <!-- page title start -->
                                <div class="post-title post-title-light">
                                    Identity
                                </div><!-- page title end -->
                                [...]
                                <!-- section TXT start -->
                                [...]
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-underline"
                                        href="#">ever since the 1500s.</a>
                                    </p>
                                [...]<!-- section TXT end -->
                            [...]
                        <!-- services item IMG start -->
                        <img alt="Services Img" class="img-cover" src="img/services/services-img-2.jpg"><!-- services item IMG end -->
                    [...]
               [...]
                                <!-- section subtitle start -->
                                <h3 class="services-sub-header">
                                    #3
                                </h3><!-- section subtitle end -->
                                [...]
                                <!-- page title start -->
                                <div class="post-title post-title-light">
                                    Branding
                                </div><!-- page title end -->
                                [...]
                                <!-- section TXT start -->
                                [...]
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-underline"
                                        href="#">ever since the 1500s.</a>
                                    </p>
                                [...]<!-- section TXT end -->
                            [...]
                        <!-- services item IMG start -->
                        <img alt="Services Img" class="img-cover" src="img/services/services-img-3.jpg"><!-- services item IMG end -->
                    [...]
                [...]
                                <!-- section subtitle start -->
                                <h3 class="services-sub-header-dark">
                                    #4
                                </h3><!-- section subtitle end -->
                                [...]
                                <!-- page title start -->
                                <div class="post-title">
                                    Advertising
                                </div><!-- page title end -->
                                [...]
                                <!-- section TXT start -->
                                [...]
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-underline"
                                        href="#">ever since the 1500s.</a>
                                    </p>
                                [...]<!-- section TXT end -->
                            [...]
                        <!-- services item IMG start -->
                        <img alt="Services Img" class="img-cover" src="img/services/services-img-4.jpg"><!-- services item IMG end -->
                    [...]
                [...]
            [...]<!-- services section end -->
        [...]

You can also edit the 'Services' section images by following its URL path: 'img/services/', and replace existing image files with your own images.

To edit the 'News' section, simply find the appropriate label <!-- news section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- news section start -->
        [...]
                            <!-- news item 1 start -->
                            [...]
                                    <!-- news IMG start -->
                                    <img alt="News Img" src="img/news/news-1.jpg"><!-- news IMG end -->
                                    [...]
                                        [...]
                                        <!-- news subtitle start -->
                                        <h3>
                                            Photography / Portfolio
                                        </h3><!-- news subtitle end -->
                                        [...]
                                        [...]
                                        <!-- news title start -->
                                        <h4 class="post-all-heading">
                                            Simplicity<br>
                                            is complex
                                        </h4><!-- news title end -->
                                        [...]
                                        [...]
                                        <!-- news date start -->
                                        <h5>
                                            July 1, 2020
                                        </h5><!-- news date end -->
                                        [...]
                                        [...]
                                        <!-- section TXT start -->
                                        [...]
                                            <p>
                                                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the
                                                1500s.
                                            </p>
                                        [...]<!-- section TXT end -->
                                        [...]
                                        <!-- the button wrapper start -->
                                        [...]
                                            <div class="the-button">
                                                Read more
                                            </div>
                                        [...]<!-- the button wrapper end -->
                                    [...]<!-- news item 1 end -->
                            <!-- news item 2 start -->
                            [...]
                                    <!-- news IMG start -->
                                    <img alt="News Img" src="img/news/news-2.jpg"><!-- news IMG end -->
                                    [...]
                                        [...]
                                        <!-- news subtitle start -->
                                        <h3>
                                            Beauty / Fashion
                                        </h3><!-- news subtitle end -->
                                        [...]
                                        [...]
                                        <!-- news title start -->
                                        <h4 class="post-all-heading">
                                            Design is<br>
                                            a process
                                        </h4><!-- news title end -->
                                        [...]
                                        [...]
                                        <!-- news date start -->
                                        <h5>
                                            July 2, 2020
                                        </h5><!-- news date end -->
                                        [...]
                                        [...]
                                        <!-- section TXT start -->
                                        [...]
                                            <p>
                                                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the
                                                1500s.
                                            </p>
                                        [...]<!-- section TXT end -->
                                        [...]
                                        <!-- the button wrapper start -->
                                        [...]
                                            <div class="the-button">
                                                Read more
                                            </div>
                                        [...]<!-- the button wrapper end -->
                                    [...]<!-- news item 2 end -->
                            <!-- news item 3 start -->
                            [...]
                                    <!-- news IMG start -->
                                    <img alt="News Img" src="img/news/news-3.jpg"><!-- news IMG end -->
                                    [...]
                                        [...]
                                        <!-- news subtitle start -->
                                        <h3>
                                            Nature / Landscapes
                                        </h3><!-- news subtitle end -->
                                        [...]
                                        [...]
                                        <!-- news title start -->
                                        <h4 class="post-all-heading">
                                            Aesthetic is<br>
                                            a decision
                                        </h4><!-- news title end -->
                                        [...]
                                        [...]
                                        <!-- news date start -->
                                        <h5>
                                            July 3, 2020
                                        </h5><!-- news date end -->
                                        [...]
                                        [...]
                                        <!-- section TXT start -->
                                        [...]
                                            <p>
                                                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the
                                                1500s.
                                            </p>
                                        [...]<!-- section TXT end -->
                                        [...]
                                        <!-- the button wrapper start -->
                                        [...]
                                            <div class="the-button">
                                                Read more
                                            </div>
                                        [...]<!-- the button wrapper end -->
                                    [...]<!-- news item 3 end -->
                            <!-- news item 4 start -->
                            [...]
                                    <!-- news IMG start -->
                                    <img alt="News Img" src="img/news/news-4.jpg"><!-- news IMG end -->
                                    [...]
                                        [...]
                                        <!-- news subtitle start -->
                                        <h3>
                                            Commercial / Stock
                                        </h3><!-- news subtitle end -->
                                        [...]
                                        [...]
                                        <!-- news title start -->
                                        <h4 class="post-all-heading">
                                            Style is<br>
                                            everything
                                        </h4><!-- news title end -->
                                        [...]
                                        [...]
                                        <!-- news date start -->
                                        <h5>
                                            July 4, 2020
                                        </h5><!-- news date end -->
                                        [...]
                                        [...]
                                        <!-- section TXT start -->
                                        [...]
                                            <p>
                                                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the
                                                1500s.
                                            </p>
                                        [...]<!-- section TXT end -->
                                        [...]
                                        <!-- the button wrapper start -->
                                        [...]
                                            <div class="the-button">
                                                Read more
                                            </div>
                                        [...]<!-- the button wrapper end -->
                                    [...]<!-- news item 4 end -->
                        [...]
        </section><!-- news section end -->
        <!-- news modal 1 start -->
        [...]
                                <!-- news date start -->
                                <div class="date">
                                    July 1, 2020
                                </div><!-- news date end -->
                                [...]
                                <!-- news title start -->
                                <h4 class="post-all-heading">
                                    Simplicity is complex
                                </h4><!-- news title end -->
                                [...]
                                <!-- news subtitle start -->
                                <h3>
                                    Photography / Portfolio
                                </h3><!-- news subtitle end -->
                                [...]
                                <!-- section TXT start -->
                                <div class="section-intro">
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-effect" href=
                                        "#">ever since the 1500s.</a>
                                    </p>
                                </div><!-- section TXT end -->
                                [...]
                                <!-- news img start -->
                                <img alt="News Modal" class="img-responsive" src="img/news/news-1.jpg"> <!-- news img end -->
                                [...]
                                <!-- section TXT start -->
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining <a class="link-effect" href="#">essentially unchanged</a>.
                                </p><!-- section TXT end -->
                                [...]<!-- news modal 1 end -->
        <!-- news modal 2 start -->
        [...]
                                <!-- news date start -->
                                <div class="date">
                                    July 2, 2020
                                </div><!-- news date end -->
                                [...]
                                <!-- news title start -->
                                <h4 class="post-all-heading">
                                    Design is a process
                                </h4><!-- news title end -->
                                [...]
                                <!-- news subtitle start -->
                                <h3>
                                    Beauty / Fashion
                                </h3><!-- news subtitle end -->
                                [...]
                                <!-- section TXT start -->
                                <div class="section-intro">
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-effect" href=
                                        "#">ever since the 1500s.</a>
                                    </p>
                                </div><!-- section TXT end -->
                                [...]
                                <!-- news video start -->
                                <div class="news-modal-video-container">
                                    <iframe allowfullscreen height="315" src="https://www.youtube.com/embed/_kK0YGv-Z1c?rel=0&amp;showinfo=1&amp;autoplay=0" width="560"></iframe>
                                </div><!-- news video end -->
                                [...]
                                <!-- section TXT start -->
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining <a class="link-effect" href="#">essentially unchanged</a>.
                                </p><!-- section TXT end -->
                                [...]<!-- news modal 2 end -->
        <!-- news modal 3 start -->
        [...]
                                <!-- news date start -->
                                <div class="date">
                                    July 3, 2020
                                </div><!-- news date end -->
                                [...]
                                <!-- news title start -->
                                <h4 class="post-all-heading">
                                    Aesthetic is a decision
                                </h4><!-- news title end -->
                                [...]
                                <!-- news subtitle start -->
                                <h3>
                                    Nature / Landscapes
                                </h3><!-- news subtitle end -->
                                [...]
                                <!-- section TXT start -->
                                <div class="section-intro">
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-effect" href=
                                        "#">ever since the 1500s.</a>
                                    </p>
                                </div><!-- section TXT end -->
                                [...]
                                <!-- news img start -->
                                <img alt="News Modal" class="img-responsive" src="img/news/news-3.jpg"> <!-- news img end -->
                                [...]
                                <!-- section TXT start -->
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining <a class="link-effect" href="#">essentially unchanged</a>.
                                </p><!-- section TXT end -->
                                [...]<!-- news modal 3 end -->
        <!-- news modal 4 start -->
        [...]
                                <!-- news date start -->
                                <div class="date">
                                    July 4, 2020
                                </div><!-- news date end -->
                                [...]
                                <!-- news title start -->
                                <h4 class="post-all-heading">
                                    Style is everything
                                </h4><!-- news title end -->
                                [...]
                                <!-- news subtitle start -->
                                <h3>
                                    Commercial / Stock
                                </h3><!-- news subtitle end -->
                                [...]
                                <!-- section TXT start -->
                                <div class="section-intro">
                                    <p>
                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text <a class="link-effect" href=
                                        "#">ever since the 1500s.</a>
                                    </p>
                                </div><!-- section TXT end -->
                                [...]
                                <!-- news video start -->
                                <div class="news-modal-video-container">
                                    <iframe allowfullscreen height="315" src="https://www.youtube.com/embed/S79YPpC8ZfI?rel=0&amp;showinfo=1&amp;autoplay=0" width="560"></iframe>
                                </div><!-- news video end -->
                                [...]
                                <!-- section TXT start -->
                                <p>
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining <a class="link-effect" href="#">essentially unchanged</a>.
                                </p><!-- section TXT end -->
                                [...]<!-- news modal 4 end -->
        [...]

You can also edit the 'News' section images by following its URL path: 'img/news/', and replace existing image files with your own images.

To edit the 'Facts' section, simply find the appropriate label <!-- facts section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- facts section start -->
        [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-top">
                                Throughout
                            </h2><!-- page subtitle end -->
                            [...]
                            <!-- page title start -->
                            <h3 class="facts-counter-number">
                                8
                            </h3><!-- page title end -->
                           [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-bottom">
                                Years
                            </h2><!-- page subtitle end -->
                        [...]
                        [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-top">
                                Produced
                            </h2><!-- page subtitle end -->
                            [...]
                            <!-- page title start -->
                            <h3 class="facts-counter-number">
                                95
                            </h3><!-- page title end -->
                            [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-bottom">
                                Items
                            </h2><!-- page subtitle end -->
                        [...]
                        [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-top">
                                Served
                            </h2><!-- page subtitle end -->
                            [...]
                            <!-- page title start -->
                            <h3 class="facts-counter-number">
                                7670
                            </h3><!-- page title end -->
                            [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-bottom">
                                Clients
                            </h2><!-- page subtitle end -->
                        [...]
                        [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-top">
                                Gained
                            </h2><!-- page subtitle end -->
                            [...]
                            <!-- page title start -->
                            <h3 class="facts-counter-number">
                                440
                            </h3><!-- page title end -->
                            [...]
                            <!-- page subtitle start -->
                            <h2 class="facts-bottom">
                                Followers
                            </h2><!-- page subtitle end -->
                        [...]
                        [...]<!-- facts section end -->
        [...]

You can edit the 'Facts' section images according to the documentation bellow (please read Background Images section).

You can also edit the 'Facts' section images by following its URL path: 'img/background/', and replace existing image files with your own images.

To edit the 'Testimonials' section, simply find the appropriate label <!-- testimonials section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- testimonials section start -->
        [...]
                                        <!-- testimonials IMG start -->
                                        [...]
                                            <img alt="Testimonials image" class="testimonials-quote-img" src="img/testimonials/testimonials-quote-img-1.jpg">
                                        [...]<!-- testimonials IMG end -->
                                        [...]
                                        <!-- section testimonial start -->
                                        <p>
                                            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
                                        </p><!-- section testimonial end -->
                                        [...]
                                        [...]
                                        <div class="testimonials-signature">
                                            C. Eastwood
                                        </div>
                                    [...]
                                [...]
                                        <!-- testimonials IMG start -->
                                        [...]
                                            <img alt="Testimonials image" class="testimonials-quote-img" src="img/testimonials/testimonials-quote-img-2.jpg">
                                        [...]<!-- testimonials IMG end -->
                                        [...]
                                        <!-- section testimonial start -->
                                        <p>
                                            When an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap
                                            into electronic typesetting.
                                        </p><!-- section testimonial end -->
                                        [...]
                                        [...]
                                        <div class="testimonials-signature">
                                            T. Scott
                                        </div>
                                    [...]
                                [...]
                                        <!-- testimonials IMG start -->
                                        [...]
                                            <img alt="Testimonials image" class="testimonials-quote-img" src="img/testimonials/testimonials-quote-img-3.jpg">
                                        [...]<!-- testimonials IMG end -->
                                        [...]
                                        <!-- section testimonial start -->
                                        <p>
                                            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
                                        </p><!-- section testimonial end -->
                                        [...]
                                        [...]
                                        <div class="testimonials-signature">
                                            K.W. Wong
                                        </div>
                                    [...]
                                [...]
                                        <!-- testimonials IMG start -->
                                        [...]
                                            <img alt="Testimonials image" class="testimonials-quote-img" src="img/testimonials/testimonials-quote-img-4.jpg">
                                        [...]<!-- testimonials IMG end -->
                                        [...]
                                        <!-- section testimonial start -->
                                        <p>
                                            When an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap
                                            into electronic typesetting.
                                        </p><!-- section testimonial end -->
                                        [...]
                                        [...]
                                        <div class="testimonials-signature">
                                            R. Redford
                                        </div>
                                    [...]
                                [...]<!-- testimonials section end -->
        [...]

You can also edit the 'Testimonials' section images by following its URL path: 'img/testimonials/', and replace existing image files with your own images.

To edit the 'Works' section, simply find the appropriate label <!-- works section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- works section start -->
        [...]
                            <!-- works carousel item 1 start -->
                            [...]
                                    <!-- works item IMG 1 hover effect start -->
                                    <a class="link-wrap" href="img/works/works-gallery-slider/works-gallery-slider-1.jpg" title="Gallery 1 / Image description 1"><span></span><span></span></a><!-- works item IMG 1 hover effect end -->
                                    <!-- works item IMG 1 gallery slider start -->
                                    <a href="img/works/works-gallery-slider/works-gallery-slider-2.jpg" title="Gallery 1 / Image description 2"></a>
                                    <a href="img/works/works-gallery-slider/works-gallery-slider-3.jpg" title="Gallery 1 / Image description 3"></a>
                                    <a href="img/works/works-gallery-slider/works-gallery-slider-4.jpg" title="Gallery 1 / Image description 4"></a><!-- works item IMG 1 gallery slider end -->
                                    <!-- works item description 1 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Web
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                Image Gallery
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 1 end -->
                                [...]<!-- works carousel item 1 end -->
                            <!-- works carousel item 2 start -->
                            [...]
                                    <!-- works item IMG 2 hover effect start -->
                                    <a class="link-wrap" data-lity="" href="https://www.youtube.com/watch?v=_kK0YGv-Z1c"><span></span><span></span></a><!-- works item IMG 2 hover effect end -->
                                    <!-- works item description 2 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Logo
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                YouTube Video
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 2 end -->
                                [...]<!-- works carousel item 2 end -->
                            <!-- works carousel item 3 start -->
                            [...]
                                    <!-- works item IMG 3 hover effect start -->
                                    <a class="link-wrap popup-photo" href="img/works/works-large/works-page-img-carousel-item-large-3.jpg" title=
                                    "Lorem ipsum dolor sit amet."><span></span><span></span></a><!-- works item IMG 3 hover effect end -->
                                    <!-- works item description 3 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Print
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                Single Image
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 3 end -->
                                [...]<!-- works carousel item 3 end -->
                            <!-- works carousel item 4 start -->
                            [...]
                                    <!-- works item IMG 4 hover effect start -->
                                    <a class="link-wrap" data-lity="" href="https://vimeo.com/95515307"><span></span><span></span></a><!-- works item IMG 4 hover effect end -->
                                    <!-- works item description 4 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Video
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                Vimeo Video
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 4 end -->
                                [...]<!-- works carousel item 4 end -->
                            <!-- works carousel item 5 start -->
                            [...]
                                    <!-- works item IMG 5 hover effect start -->
                                    <a class="link-wrap popup-photo" href="img/works/works-large/works-page-img-carousel-item-large-5.jpg" title=
                                    "Lorem ipsum dolor sit amet."><span></span><span></span></a><!-- works item IMG 5 hover effect end -->
                                    <!-- works item description 5 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Photo
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                Single Image
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 5 end -->
                                [...]<!-- works carousel item 5 end -->
                            <!-- works carousel item 6 start -->
                            [...]
                                    <!-- works item IMG 6 hover effect start -->
                                    <a class="link-wrap" href="img/works/works-gallery-slider-2/works-gallery-slider-1.jpg" title="Gallery 2 / Image description 1"><span></span><span></span></a><!-- works item IMG 6 hover effect end -->
                                    <!-- works item IMG 6 gallery slider start -->
                                    <a href="img/works/works-gallery-slider-2/works-gallery-slider-2.jpg" title="Gallery 2 / Image description 2"></a>
                                    <a href="img/works/works-gallery-slider-2/works-gallery-slider-3.jpg" title="Gallery 2 / Image description 3"></a>
                                    <a href="img/works/works-gallery-slider-2/works-gallery-slider-4.jpg" title="Gallery 2 / Image description 4"></a><!-- works item IMG 6 gallery slider end -->
                                    <!-- works item description 6 start -->
                                    [...]
                                        <!-- page title start -->
                                        <h3>
                                            Web
                                        </h3><!-- page title end -->
                                        [...]
                                        <!-- page subtitle start -->
                                        [...]
                                            <h4 class="post-heading-works">
                                                Image Gallery
                                            </h4>
                                        [...]<!-- page subtitle end -->
                                        [...]<!-- works item description 6 end -->
                                [...]<!-- works carousel item 6 end -->
                        [...]<!-- works section end -->
        [...]

You can edit the 'Works' section background images via CSS file (e.g. style.css).

Part to edit:


[...]
/* 1. TEMPLATE BACKGROUNDS */
[...]
/* 1.4. works IMG gallery carousel IMG BACKGROUND */
.works-page-carousel-item-1 {    
background-image: url(../img/works/works-page-img-carousel-item-1.jpg);
}
.works-page-carousel-item-2 {
background-image: url(../img/works/works-page-img-carousel-item-2.jpg);
}
.works-page-carousel-item-3 {
background-image: url(../img/works/works-page-img-carousel-item-3.jpg);
}
.works-page-carousel-item-4 {
background-image: url(../img/works/works-page-img-carousel-item-4.jpg);
}
.works-page-carousel-item-5 {
background-image: url(../img/works/works-page-img-carousel-item-5.jpg);
}
.works-page-carousel-item-6 {
background-image: url(../img/works/works-page-img-carousel-item-6.jpg);
}
[...]

You can also edit the 'Works' section images by following its URL path: 'img/works/', and replace existing image files with your own images.

To edit the 'Contact' section, simply find the appropriate label <!-- contact section start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- contact section start -->
        [...]
                        <!-- page email start -->
                        [...]
                            <a class="link-underline link-underline-light" href="mailto:contact@domainname.com">contact@domainname.com</a>
                        [...]<!-- page email end -->
                    [...]
                        <!-- contact modal launcher start -->
                        [...]
                            <div class="the-button">
                                Use the form
                            </div>
                        [...]<!-- contact modal launcher end -->
                    [...]
                    [...]<!-- contact section end -->
        [...]

To edit the 'Sign Up Form Modal' section, simply find the appropriate label <!-- sign up modal start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- sign up modal start -->
        [...]
                                <!-- sign up modal title start -->
                                <h2 class="section-heading">
                                    Newsletter sign up
                                </h2><!-- sign up modal title end -->
                            [...]
                        [...]
                                                <!-- newsletter submit button start -->
                                                [...]
                                                    <button class="the-button the-button-submit" id="submit-2" type="submit"><span>Submit</span></button>
                                                [...]<!-- newsletter submit button end -->
                                            [...]<!-- sign up modal end -->
        [...]

To edit the 'Contact Form Modal' section, simply find the appropriate label <!-- contact modal start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- contact modal start -->
        [...]
                                <!-- contact modal title start -->
                                <h2 class="section-heading">
                                    Get in touch
                                </h2><!-- contact modal title end -->
                            [...]
                        [...]
                                            <!-- contact form submit button start -->
                                            [...]
                                                <button class="the-button the-button-submit" id="submit" type="submit"><span>Submit</span></button>
                                            [...]<!-- contact form submit button end -->
                                        [...]<!-- contact modal end -->
        [...]

To send the contents of your 'Contact Form' to your email, simply open the file named 'contact.php'.

Your email address goes here:

$myemail = 'you@yoursite.com';

To add form submissions to a subscriber list in your MailChimp account, simply open the file named 'subscribe.php' and configure it with your MailChimp credentials in the assigned slots below:

$api_key = 'YOUR_API_KEY';
[...]
$list_id = 'YOUR_LIST_ID';

Please make sure you have generated your MailChimp API Key and copied your MailChimp List ID.


- MailChimp API Key ARTICLE as available at: http://kb.mailchimp.com/accounts/management/about-api-keys#Finding-or-generating-your-API-key
- MailChimp List ID ARTICLE as available at: http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id

To add images in the background of the template, simply find the appropriate CSS file placed in the folder named 'css' (e.g. style.css).

Open the file and find the appropriate label '/* 1. TEMPLATE BACKGROUNDS */'.

Part to edit:


[...]
/* 1. TEMPLATE BACKGROUNDS */
/* 1.1. single IMG BACKGROUND */
.bg-img-SINGLE {
background-image: url(../img/background/SINGLE-bg.jpg);
}
[...]
/* 1.5. years IMG BACKGROUND */
.parallax-years {
background-image: url(../img/background/parallax-years-bg.jpg);
}
/* 1.6. facts IMG BACKGROUND */
.parallax-facts {
background-image: url(../img/background/parallax-facts-bg.jpg);
}
/* 1.7. slick fullscreen and ken burns slideshow ZOOM/FADE IMG BACKGROUND */
.bg-img-1,
.kenburns-slide-1 {
background-image: url(../img/background/hero-bg-1.jpg);
}
.bg-img-2,
.kenburns-slide-2 {
background-image: url(../img/background/hero-bg-2.jpg);
}
.bg-img-3,
.kenburns-slide-3 {
background-image: url(../img/background/hero-bg-3.jpg);
}
.bg-img-4,
.kenburns-slide-4 {
background-image: url(../img/background/hero-bg-4.jpg);
}
/* 1.8. home IMG carousel slider IMG BACKGROUND */
.home-page-img-item-1 {        
background-image: url(../img/background/home-page-img-item-1.jpg);
}
.home-page-img-item-2 {        
background-image: url(../img/background/home-page-img-item-2.jpg);
}
.home-page-img-item-3 {    
background-image: url(../img/background/home-page-img-item-3.jpg);
}
.home-page-img-item-4 {        
background-image: url(../img/background/home-page-img-item-4.jpg);
}
.home-page-img-item-5 {        
background-image: url(../img/background/home-page-img-item-5.jpg);
}
.home-page-img-item-6 {        
background-image: url(../img/background/home-page-img-item-6.jpg);
}
.home-page-img-item-7 {        
background-image: url(../img/background/home-page-img-item-7.jpg);
}
/* 1.9. swiper parallax IMG BACKGROUND */
.swiper-slide-parallax-bg {    
background-image: url(../img/background/parallax-bg.jpg);
}
/* 1.10. swiper thumbnail IMG BACKGROUND */
.thumbnail-slider-bg-1 {
background-image: url(../img/background/thumbnail-slider-bg-1.jpg);
}
.thumbnail-slider-bg-2 {
background-image: url(../img/background/thumbnail-slider-bg-2.jpg);
}
.thumbnail-slider-bg-3 {
background-image: url(../img/background/thumbnail-slider-bg-3.jpg);
}
.thumbnail-slider-bg-4 {
background-image: url(../img/background/thumbnail-slider-bg-4.jpg);
}
.thumbnail-slider-bg-5 {
background-image: url(../img/background/thumbnail-slider-bg-5.jpg);
}
.thumbnail-slider-bg-6 {
background-image: url(../img/background/thumbnail-slider-bg-6.jpg);
}
.thumbnail-slider-bg-7 {
background-image: url(../img/background/thumbnail-slider-bg-7.jpg);
}
.thumbnail-slider-bg-8 {
background-image: url(../img/background/thumbnail-slider-bg-8.jpg);
}
[...]

You can also edit the images by following its URL path: '/img/background/', and replace existing image files with your own images.

To add 'YouTube Videos - SINGLE' in the background of the template, simply find the appropriate label <!-- YouTube video URL start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- YouTube video URL start -->
                    <div class="player" data-property=
                    "{videoURL: 'x76rgAqB6-Y', containment: '#videoContainment', showControls: false, autoPlay: true, loop: true, vol: 50, mute: true, startAt: 0, stopAt: 0, opacity: 1, addRaster: false, quality: 'large', optimizeDisplay: true, ratio: 16/9}"
                    id="bgndVideo"></div><!-- YouTube video URL end -->
        [...]

Please note;
This template is designed to use YouTube videos as a background; however, 'YouTube Video Background' plugin is not supported by SOME mobile devices and it doesn't work on ALL mobile devices, so the background image is added to compensate for it. This background image can be found by following its URL path: 'img/background/YT-bg.jpg'.

To activate the background image, please open the 'style.css' file.

Part to edit:


[...]
/* YouTube video */
[...]
@media only screen and (max-width: 880px) {
  .YT-bg {
    [...]
    background-image: url(../img/background/YT-bg.jpg);
    [...]
            /* uncomment the following to show an image for mobile devices */
            /* display: block; */
  }
}
[...]

To add 'Self-Hosted HTML5 Videos' in the background of the template, simply find the appropriate label <!-- HTML5 video URL start --> in the body of the HTML file.

Part to edit:


                [...]
                <!-- HTML5 video URL start -->
                <div class="html5-videoContainment" data-vide-bg="http://www.11-76.com/html5-videos/willex.mp4" data-vide-options="loop: true, muted: true"></div><!-- HTML5 video URL end -->
                [...]

Please note;
This template is designed to use Self-Hosted HTML5 videos as a background; however, 'Self-Hosted HTML5 Videos' plugin is not supported by SOME mobile devices and it doesn't work on ALL mobile devices, so the background image is added to compensate for it. This background image can be found by following its URL path: 'img/background/html5-bg.jpg'.

To activate the background image, please open the 'style.css' file.

Part to edit:


[...]
/* HTML5 video */
[...]
@media only screen and (max-width: 880px) {
  .html5-bg {
    [...]
    background-image: url(../img/background/html5-bg.jpg);
    [...]
            /* uncomment the following to show an image for mobile devices */
            /* display: block; */
  }
}
[...]

To add 'Vimeo Videos' in the background of the template, simply find the appropriate label <!-- Vimeo video URL start --> in the body of the HTML file.

Part to edit:


                [...]
                <!-- Vimeo video URL start -->
                    <iframe data-fullscreeneo="" src="https://player.vimeo.com/video/93804969?autoplay=1&amp;background=1&amp;hd=1&amp;loop=1"></iframe><!-- Vimeo video URL end -->
                [...]

Please note;
This template is designed to use Vimeo videos as a background; however, 'Vimeo Video Background' plugin is not supported by SOME mobile devices and it doesn't work on ALL mobile devices, so the background image is added to compensate for it. This background image can be found by following its URL path: 'img/background/vimeo-bg.jpg'.

To activate the background image, please open the 'style.css' file.

Part to edit:


[...]
/* Vimeo video */
[...]
@media only screen and (max-width: 880px) {
  .vimeo-bg {
    [...]
    background-image: url(../img/background/vimeo-bg.jpg);
    [...]
            /* uncomment the following to show an image for mobile devices */
            /* display: block; */
  }
}
[...]

Contact the author

    This author provides limited support through email contact form [http://themeforest.net/user/ex-nihilo#contact].

Item support includes:

    Availability of the author to answer questions
    Answering technical questions about item’s features
    Assistance with reported bugs and issues
    Help with included 3rd party assets

However, item support does not include:

    Customization services
    Installation services

This author’s response time can be up to 2 business days.
Working time:

    Monday thru Friday 9am to 5pm
    Central European Time (UTC+01:00)