Bold || Responsive Under Construction Template

Documentation


To edit the 'Welcome Message', simply find the appropriate label <!-- welcome slides start --> in the body of the HTML file.

Part to edit:


            [...]
                                            <!-- intro content visible start -->
                                            [...]
                                                    An ex nihilo template
                                                [...]
                                                            <h1>
                                                                We
                                                            </h1>
                                                        [...]
                                                            <h1>
                                                                Are
                                                            </h1>
                                                        [...]
                                                            <h1>
                                                                Bold
                                                            </h1>
                                                        [...]<!-- welcome slides end -->
                                                <!-- newsletter form start -->
                                                <h6>
                                                    Newsletter sign up
                                                </h6>
                                                <p class="newsletter-p">
                                                    Subscribe today to receive the latest news
                                                </p>
                                                [...]<!-- intro content visible end -->
            [...]

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

Part to edit:


        [...]
                    <!-- about start -->
                    [...]
                                            <h4>
                                                //
                                            </h4>
                                            <h2>
                                                About <span class="get-behind">About</span>
                                            </h2><!-- launcher ABOUT start -->
                                            <h3 class="about-launcher">
                                                Find out more about us &nbsp; <i class="fa fa-angle-right"></i><i class="fa fa-angle-right"></i>
                                            </h3><!-- launcher ABOUT end -->
                                        [...]
                                        <!-- about content visible start -->
                                        [...]
                                                    <ul id="skills">
                                                        <li>
                                                            <span class="expand identity"></span><span class="skills-description">Identity &middot; 60%</span>
                                                        </li>
                                                        <li>
                                                            <span class="expand development"></span><span class="skills-description">Development &middot; 80%</span>
                                                        </li>
                                                        <li class="last">
                                                            <span class="expand design"></span><span class="skills-description">Design &middot; 100%</span>
                                                        </li>
                                                    </ul>
                                                [...]
                                                    <p>
                                                        Curabitur sit amet odio vitae odio gravida tempus. Aenean in lectus neque.
                                                    </p>
                                                    <p>
                                                        Nunc in lacus quis enim ultrices suscipit sit amet id lorem. Sed in <a href="#">lorem felis</a>.
                                                    </p>
                                                [...]
                                                    <p>
                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dictum <a href="#">pharetra congue</a>.
                                                    </p>
                                                    <p>
                                                        Suspendisse ut feugiat orci, in laoreet augue. Aliquam ultricies, ligula non dignissim suscipit.
                                                    </p>
                                                [...]
                                                    <p>
                                                        Curabitur sit amet odio vitae odio gravida tempus. Aenean in lectus neque.
                                                    </p>
                                                    <p>
                                                        Nunc in lacus quis enim ultrices suscipit sit amet id lorem. Sed in <a href="#">lorem felis</a>.
                                                    </p>
                                                [...]<!-- about content visible end -->
                                        <!-- about content hidden start -->
                                        [...]
                                                        <h5>
                                                            <span class="awesome">Brand</span> Identity
                                                        </h5>
                                                        <p>
                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dictum <a href="#">pharetra congue</a>.
                                                        </p>
                                                    [...]
                                                        <h5>
                                                            <span class="awesome">Brand</span> Design
                                                        </h5>
                                                        <p>
                                                            Suspendisse ut feugiat orci, in laoreet augue. Aliquam ultricies, ligula non dignissim suscipit.
                                                        </p>
                                                    [...]
                                                        <h5>
                                                            <span class="awesome">Web</span> Design
                                                        </h5>
                                                        <p>
                                                            Curabitur sit amet odio vitae odio gravida tempus. Aenean in lectus neque.
                                                        </p>
                                                    [...]
                                                        <h5>
                                                            <span class="awesome">Web</span> Development
                                                        </h5>
                                                        <p>
                                                            Nunc in lacus quis enim ultrices suscipit sit amet id lorem. Sed in <a href="#">lorem felis</a>.
                                                        </p>
                                                    [...]<!-- about end -->
        [...]


To edit the 'Skills' percentage, simply open the CSS file [e.g. style-dark.css].

Part to edit:


[...]
/* skills */
[...]
.identity {
width: 60%;
-webkit-animation: identity 2s ease-out;
   -moz-animation: identity 2s ease-out;
    -ms-animation: identity 2s ease-out;
     -o-animation: identity 2s ease-out;
        animation: identity 2s ease-out;
}
.development {
width: 80%;
-webkit-animation: development 2s ease-out;
   -moz-animation: development 2s ease-out;
    -ms-animation: development 2s ease-out;
     -o-animation: development 2s ease-out;
        animation: development 2s ease-out;
}
.design {
width: 100%;
-webkit-animation: design 2s ease-out;
   -moz-animation: design 2s ease-out;
    -ms-animation: design 2s ease-out;
     -o-animation: design 2s ease-out;
        animation: design 2s ease-out;
}
@-moz-keyframes identity        { 0%  { width: 0; } 100% { width: 60%; }  }
@-moz-keyframes development       { 0%  { width: 0; } 100% { width: 80%; }  }
@-moz-keyframes design { 0%  { width: 0; } 100% { width: 100%; } }

@-webkit-keyframes identity        { 0%  { width: 0; } 100% { width: 60%; }  }
@-webkit-keyframes development       { 0%  { width: 0; } 100% { width: 80%; }  }
@-webkit-keyframes design { 0%  { width: 0; } 100% { width: 100%; } }
[...]

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

Part to edit:


        [...]
                    <!-- contact start -->
                    [...]
                                            <h4>
                                                //
                                            </h4>
                                            <h2>
                                                Contact <span class="get-behind">Contact</span>
                                            </h2><!-- launcher CONTACT start -->
                                            <h3 class="contact-launcher">
                                                For more ways to contact us, click here &nbsp; <i class="fa fa-angle-right"></i><i class="fa fa-angle-right"></i>
                                            </h3><!-- launcher CONTACT end -->
                                        [...]
                                        <!-- contact content visible start -->
                                        [...]<!-- contact content visible end -->
                                        <!-- contact content hidden start -->
                                        [...]
                                                    <span class="awesome-contact"><span class="fa fa-map-marker"></span></span>
                                                    <p>
                                                        ex nihilo, Inc.<br>
                                                        Touchdown Dr 1176
                                                    </p>
                                                [...]
                                                    <span class="awesome-contact"><span class="fa fa-mobile"></span></span>
                                                    <p>
                                                        [00] 11 - 76<br>
                                                        [01] 11 - 76
                                                    </p>
                                                [...]
                                                    <span class="awesome-contact"><span class="fa fa-paper-plane"></span></span>
                                                    <p>
                                                        <a href="mailto:contact@yourdomainname.com">contact@yourdomainname.com</a><br>
                                                        <a href="mailto:info@yourdomainname.com">info@yourdomainname.com</a>
                                                    </p>
                                                [...]<!-- contact 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 edit the 'Percentage' page, simply find the appropriate label <!-- progress animation start --> in the body of the HTML file.

Part to edit:


        [...]
        <!-- progress animation start -->
                                            [...]
                                                    <div class="progress">
                                                        <input class="num num2" data-angleoffset="180" data-bgcolor="#fff" data-fgcolor="#db0018" data-readonly="true" data-skin="tron" data-thickness=
                                                        ".095" data-width="250" name="76" type="text" value="0"> <span class="percent">%</span>
                                                    </div>
                                                    <h6 class="almost-done">
                                                        We're almost done
                                                    </h6>
                                                    <p>
                                                        POSTPONED until further notice! STAY TUNED!
                                                    </p>
                                                [...]<!-- progress animation end -->
        [...]


By default the Percentage is set to 76. To change it please edit: name="76".

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 = new MCAPI('YOUR_API_KEY');

[...]

$retval = $api->listSubscribe( 'YOUR_LIST_ID', $_POST["subscribe-email"], $merge_vars, 'html', false, true );

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 label <!-- kenburnsy start --> in the body of the HTML file.

Part to edit:


                [...]
            <!-- ken burns image slideshow start -->
            <div id="kenburnsy-bg">
                <img alt="Background" src="img/background/1.jpg"> <img alt="Background" src="img/background/2.jpg"> <img alt="Background" src="img/background/3.jpg"> <img alt="Background" src=
                "img/background/4.jpg">
            </div><!-- ken burns image slideshow end -->
                [...]

You can also edit the images by following its URL path: '/img/background/', and replace existing image files with your own images.
You can use any size for a background image.
Please note;
Demo images are not included. Image placeholders are provided instead.

To add images in the background of the template, simply open the CSS file [e.g. style-dark.css].

Part to edit:


[...]
/* hero background IMG */
[...]
.bg-img-SINGLE {
background-image: url(../img/background/SINGLE-bg.jpg);
}      
[...]      


You can also edit the images by following its URL path: '/img/background/SINGLE-bg.jpg', and replace existing image files with your own images.
You can use any size for a background image.
Please note;
Demo images are not included. Image placeholders are provided instead.

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

Replace:


                [...]
                <!-- YouTube video URL start -->
                <div id="videoContainment"></div><a class="player" data-property=
                "{videoURL:'https://www.youtube.com/watch?v=KUVyefqd76A', mute:true, showControls:false, quality:'default', opacity:1, containment:'#videoContainment', optimizeDisplay:true, loop:true, startAt:0, autoPlay:true, showYTLogo:false, addRaster:false, realfullscreen:true}"
                id="bgndVideo"></a><!-- YouTube video URL end -->
                [...]

With:


                [...]
                <!-- YouTube video URL start -->
                <div id="videoContainment"></div><a class="player" data-property=
                "{videoURL:'https://www.youtube.com/watch?v=youryoutubevideouniqueID', mute:true, showControls:false, quality:'default', opacity:1, containment:'#videoContainment', optimizeDisplay:true, loop:true, startAt:0, autoPlay:true, showYTLogo:false, addRaster:false, realfullscreen:true}"
                id="bgndVideo"></a><!-- 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 mobile devices and it doesn't work on 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'.
By default the sound of the video is set mute. To unmute the sound, change 'mute:true' into 'mute:false'.

To add 'Vimeo Videos' in the background of the template, simply open the JS file named 'fin.js' placed in the folder named 'js'.

Part to edit:


[...]
        // Vimeofy
        [...]
            'url': 'https://vimeo.com/105001064', // Vimeo VIDEO URL  
[...]    

 
Please note;
This template is designed to use Vimeo videos as a background; however, 'Vimeo Video Background' plugin is not supported by mobile devices and it doesn't work on 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 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 data-vide-bg="http://www.11-76.com/html5-videos/ballet.mp4" data-vide-options="loop: true, muted: true, position: 0% 0%" id="video-bg"></div><!-- HTML5 video URL end -->
                [...]


Please note;
This template is designed to use Self-Hosted MP4 file format videos as a background; however, 'Self-Hosted HTML5 Video Background' plugin is not supported by mobile devices and it doesn't work on 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'.
By default the sound of the video is set mute. To unmute the sound, change 'muted: true' into 'muted: false'.

To add images in the background of the template, simply open the CSS file [e.g. style-dark.css or/and style-light.css].

Part to edit:



[...]
/* hero background IMG */
[...]
.bg-img-split-1 {
background-image: url(../img/background/hero-bg-split-1.jpg);
}
.bg-img-split-2 {
background-image: url(../img/background/hero-bg-split-2.jpg);
}
.bg-img-split-3 {
background-image: url(../img/background/hero-bg-split-3.jpg);
}
.bg-img-split-4 {
background-image: url(../img/background/hero-bg-split-4.jpg);
}
[...]


You can also edit the images by following its URL path: '/img/background/', and replace existing image files with your own images.
You can use any size for a background image.
Please note;
Demo images are not included. Image placeholders are provided instead.

To add images in the background of the template, simply open the CSS file [e.g. style-dark.css or/and style-light.css].

Part to edit:


[...]
/* hero background IMG */
[...]
.bg-img-zoom-1 {
background-image: url(../img/background/hero-bg-zoom-1.jpg);
}
.bg-img-zoom-2 {
background-image: url(../img/background/hero-bg-zoom-2.jpg);
}
.bg-img-zoom-3 {
background-image: url(../img/background/hero-bg-zoom-3.jpg);
}
.bg-img-zoom-4 {
background-image: url(../img/background/hero-bg-zoom-4.jpg);
}
[...]


You can also edit the images by following its URL path: '/img/background/', and replace existing image files with your own images.
You can use any size for a background image.
Please note;
Demo images are not included. Image placeholders are provided instead.

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)