Scorpio allows you to add a profile image and image tiles to display your project or portfolio images in the template.
Adding Project or Portfolio Images
To add your own project or portfolio images, follow these instructions:
- Select the images from your PC that you want to display and resize them, if necessary.
- 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.
- Open the index.html file in a code editor and look for the main-content section within the file.
- Change the file name to the file name of your project or portfolio images.
- For more information, refer to the code example.
- 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 project or portfolio images:
<div class="element clearfix col-small home portfolio">
<a href="#"> <figure class="images"> <img src="assets/images/project-1.jpg" alt=""> </figure> </a> </div> <div class="element clearfix col-small home portfolio"> <a href="#"> <figure class="images"> <img src="assets/images/project-2.jpg" alt=""> </figure> </a> </div> <div class="element clearfix col-small home portfolio"> <a href="#"> <figure class="images"> <img src="assets/images/project-3.jpg" alt=""> </figure> </a> </div> <div class="element clearfix col-small home portfolio"> <a href="#"> <figure class="images"> <img src="assets/images/project-4.jpg" alt=""> </figure>
</a> </div>
Adding a Profile Image
To add a profile image, follow these instructions:
- Select the image from your PC that you want to display and resize it, if necessary.
- 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/image folder.
- Open the index.html file in a code editor and look for the main-content section within the file.
- Change the file name to the file name of your project or portfolio image.
- For more information, refer to the code example.
- 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 project or portfolio images in the index.html page:
<div class="element clearfix col-small home about"> <figure class="images"> <img src="assets/images/profile.jpg" alt=""> </figure> </div>