css/
click/cover/devices/fonts/landing/fonts/img/
/bg-slider/cover/devices
/iphone/nokia/landing
/gallery/testimonials/stores/vidjs/
/cover/landingphp/
/php-mailervendor/
/anmated-text/click-feedback/full-screen-video/lightbox/push-menuvid/cover-bg-image.htmlcover-bg-pattern.htmlcover-bg-slider.htmlcover-bg-video.phpcustom.csslanding.htmlstyle.cssjs/main.js
The website loader can be amended so that its delay is longer or shorter, to do this simply change the following code
Line: 9 jQuery(".preloader").delay(4000).fadeOut("slow");.delay(4000) to .delay(1000) this will shorten the of delay the website loader and/or its content.
js/main.js
WOW Animations are initialized and turned on by default, if for any reason you decide not to use animations you can turn them off below.
Line: 40 new WOW().init();.new WOW().init(); to /*new WOW().init();*/ this will comment out the code preventing it from being initialized.
<div class="row"> <div class="container"> <div class="col-md-3"></div> <div class="col-md-9"></div> </div> </div>
style.css (General template style sheet)custom.css (You may use this to make css additions or overrides)/cover (You may use this to make css additions or overrides)
bg-image.css (Individual cover style sheets)/landing (You may use this to make css additions or overrides)
landing.css (Landing style sheet)<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,200,100,500,600,700,800,900' rel='stylesheet' type='text/css'>To make a change to, or add additional fonts, you'll want to visit http://www.google.com/webfonts, choose yourself a font and use the generated code they provide you with.
<i class="fa fa-twitter"></i>These can be customized via the use of CSS, allowing you to change all sort of attributes, for a full list of icons please visit: http://fontawesome.io/
<div class="wow fadeInUp"></div>The class
wow sets a feature where the animation will not play until its div is in view, the class fadeInUp is the actual animation. Please visit daneden.github.io/animate.css/ for a whole range of animations that are supported.
/img or /img/landing/css/cover and if it were a landing template then it woudl be in /css/landing
cover-bg-slider.html template we use a standard carousel with a fade transition, search for BG Slider and you'll find the bg slider area where you change the images in the in-line html style.
<div class="fill" style="background-image:url('img/bg-slider/slide1.png');" ></div>
cover-bg-video.html template we use background video, search for Full Screen Video and you'll find the bg slider area where you change the video in the in-line html
Simply change the poster="img/vid/timelapse.png" to your image and the src="vid/timelapse.mp4" to your video
<div class="area-of-interest aoi-1" data-toggle="tooltip" data-placement="right" title="" data-original-title="Easy Customisation" ></div>The
aoi-1 controls the position of the icon, the data-toggle="tooltip" data-placement="right" title="" data-original-title="Easy Customisation" controls the position of the tool tip and its content.css/landing style sheet directory.
/css/landing/landing.css ccontrols this, simply navigate to line 278 and change the bo shadow color.img-responsive class to it like so:<img src="img/image.jpg" class="img-responsive" alt="image" >
<iframe src="https://www.youtube.com/embed/xnP3UNpu63o?rel=0&controls=0&showinfo=0"></iframe><div class="vid-responsive"> <iframe src="https://www.youtube.com/embed/xnP3UNpu63o?rel=0&controls=0&showinfo=0"></iframe> </div>
/php/contact-form.php or /php/subscribe-form.php.$to = 'you@domain.com'; This is the email address that the contact form will send the information to.$mail->Host = 'name@domain.com'; From this line down to line 81 you can set extra parameters if required.