Luminis Documentation
Thank you for purchasing our template. If you don't find the answers for your questions in this help file, please feel free to email via our user page contact form (this is the only way we can verify legitimate customers) . Thanks so much!
Setup Pages
Homepage
In the luminis-html folder you have 3 homepage variations( index.html, homepage-2.html and homepage-3.html). To change the main homepage, just rename homepage-2.html or homepage-3.html to index.html.
Homepage Slider
To add your own images to the home slider, edit index.html file, starting from line 110:
Add more slides by duplicating the slider-item-box div container:
<div class="slider-post slider-item-box">
<div class="slider-img" style="background-image:url('images/home/slider-1.jpg');"></div>
<div class="slider-caption">
<h1>Welcome, I am Rick Smith! <br >Photographer</h1>
</div>
</div>
The homepage 2 and 3 have portfolio sections. For homepage-2.html go to line 137 and inside the portfolio-2cols container, add / remove gallery-item divs
<div class="gallery-item">
<a href="single-gallery-portraits.html">
<div class="gallery-item-img" style="background-image:url('images/portfolio/portraits/portrait-1.jpg');"></div>
<div class="gallery-item-desc">
<h2>Portraits</h2>
<div class="gallery-item-subtitle"> Esse cillum dolore </div>
</div>
</a>
</div>
Portfolio Page
You can choose from 5 different portfolio page templates: portfolio-1-col, portfolio-2-cols, portfolio-3-cols, portfolio-4-cols and portfolio-zig-zag.
For example if you want to add a new gallery item, for the portfolio-2-cols template, after line 218 add the following code:
<div class="gallery-item">
<a href="#">
<div class="gallery-item-img" style="background-image:url('ADD-YOUR-IMAGE-HERE');"></div>
<div class="gallery-item-desc">
<h2>Night Sky</h2>
<div class="gallery-item-subtitle"> Do eiusmod tempor incididunt </div>
</div>
</a>
</div>
<!-- /gallery-item -->
Gallery Page
The gallery page examples are found under single-gallery-GALLERYNAME.html files
For example if you want to add a new gallery item for the single-gallery-aerial.htmlfile, before the end gallery div tag holder, line 159, add the following code. Replace the images URLs with your own.
<div class="gal-item">
<a href="images/portfolio/aerial/aerial-7.jpg" title="Aerial 7">
<img src="images/portfolio/aerial/aerial-7-571x400.jpg" alt="" />
</a>
</div>
Contact Page
In order to receive emails via the contact page, you'll have to edit the include/contact-process.php file and change the $recipient variable value with your own email address.

FAQ Page
In order to add a new faq item, edit faq.html file and right after line 145 add the following code. Make sure the href and id are unique and the same.
<h4 class="faq-title"><a href="#uniqueIDname">Quia consequuntur magni dolores eos?</a></h4>
<div id="uniqueIDname" class="faq-section">
At vero eos et accusamus. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat. Nihil molestiae consequatur, vel illum qui dolorem eum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. Cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia.
</div>
Price Page
In order to edit the price table, open price.html file and start editing from line 118.