Knowledge Base

Browse through our expansive online help documentation.

View Categories

Adding Images in Slide

Slide allows you to add a background image in the header and client images. Additionally, you can display your latest projects or portfolio images.

Adding a Background Image

To add your own background image, follow these instructions:

  1. Select the image from your PC that you want to display as a background image and resize it, if necessary.
  2. Copy the image to the assets/images folder.
    • If you’re testing the template locally on your PC, then simply copy the image.
    • If you’ve already uploaded the template to your host’s server, then FTP the image into the assets/images folder.
  3. Open the index.html file in a code editor and look for the header section within the file.
  4. Change the file name to the file name of your background image.
    • For more information, refer to the code example.
  5. Save the file and view the updates on your PC.
    • If you’re testing locally, simply drag the index.html file into an empty tab of your favorite internet browser.
    • If you’ve already uploaded the template to your host’s server, then FTP the updated index.html file, and then view it in your browser.

Here is the code which you need to modify to display your new background image:

<a href="#" class="image profile"><img src="assets/images/profile.jpg" alt=""></a>

Adding Project Thumbnails & Images

To add your own images, follow these instructions:

  1. Select the images from your PC that you want to showcase and resize them, if necessary.
  2. Copy those images to the assets/images folder.
    • If you’re testing the template locally on your PC, then simply copy those images.
    • If you’ve already uploaded the template to your host’s server, then FTP those images into the assets/images folder.
  3. Open the index.html file in a code editor and look for the projects section within the file.
  4. Change the file names to the file names of your project/portfolio images.
    • You will need to change this in two places: within the code for both the thumbnail and portfolio images. For more information, refer to the code examples.
  5. Repeat step 4 as needed.
  6. Save the file and view the updates on your PC.
    • If you’re testing locally, simply drag the index.html file into an empty tab of your favorite internet browser.
    • If you’ve already uploaded the template to your host’s server, then FTP the updated index.html file, and then view it in your browser.

Here is the code which you need to modify to link a new thumbnail and portfolio images:

<a href="assets/images/project-1.jpg" data-fancybox class="image conform thumbnail"><img src="assets/images/project-1.jpg" alt=""></a>
...
<a href="assets/images/project-2.jpg" data-fancybox class="image conform thumbnail"><img src="assets/images/project-2.jpg" alt=""></a>
...
<a href="assets/images/project-3.jpg" data-fancybox class="image conform thumbnail"><img src="assets/images/project-3.jpg" alt=""></a>
...
<a href="assets/images/project-4.jpg" data-fancybox class="image conform thumbnail"><img src="assets/images/project-4.jpg" alt=""></a>

Adding Client Images

To add client images, follow these instructions:

  1. Select the images from your PC that you want to display and resize them, if necessary.
  2. Copy the images to the assets/images folder.
    • If you’re testing the template locally on your PC, then simply copy the images.
    • If you’ve already uploaded the template to your host’s server, then FTP the images into the assets/images folder.
  3. Open the index.html file in a code editor and look for the clients section within the file.
  4. Change the file names to the file names of your client images.
    • For more information, refer to the code example.
  5. Save the file and view the updates on your PC.
    • If you’re testing locally, simply drag the index.html file into an empty tab of your favorite internet browser.
    • If you’ve already uploaded the template to your host’s server, then FTP the updated index.html file, and then view it in your browser.

Here is the code which you need to modify to display your new client images in the index.html page:

<div class="row">
<article class="col-lg-4 col-md-4 col-sm-4"> <div class="image-client"><img src="assets/images/client-1.svg" alt=""></div> </article> <article class="col-lg-4 col-md-4 col-sm-4"> <div class="image-client"><img src="assets/images/client-2.svg" alt=""></div> </article> <article class="col-lg-4 col-md-4 col-sm-4"> <div class="image-client"><img src="assets/images/client-3.svg" alt=""></div> </article> </div>