Okay
  Public Ticket #971029
Works section
Closed

Comments

  •  2
    Eleanor started the conversation

    Hi there,

    Trying to find where the code is for the link from the thumbnail (853x568) to the larger 1173x786 image in the works section. In your files, where demo/projects/work1.jpg is used.

    Cheers

  •  840
    Jelly replied

    Hi,

    You will see the file name: portfolio.html, you can change your portfolio image in this file.

    You will need create new portfolio.html file for each work. See my example below:

    <div class="folio-item isotope-item web motion photos design" >
        <div class="portfolio-thumb">
            <a class="folio-project" href="portfolio-video.html" onClick="return false;">
    //Default portfolio video call portfolio-video.html file
                <img src="demo/projects/3.jpg" class="img-responsive" alt=""/>
                <div class="portfolio-dark-overlay"></div>
                <div class="portfolio-inner">
                    <div class="portfolio-inner-ctr">                    
                        <h4>Margarita</h4>
                    </div>
                </div>
            </a>
        </div>
    </div>
    <div class="folio-item isotope-item web design branding photos">
        <div class="portfolio-thumb">
            <a class="folio-project" href="portfolio-2.html" onClick="return false;">
    //New portfolio call portfolio-2.html file
                <img src="demo/projects/4.jpg" class="img-responsive" alt=""/>
                <div class="portfolio-dark-overlay"></div>
                <div class="portfolio-inner">
                    <div class="portfolio-inner-ctr">                    
                        <h4>Somewhere Fun!</h4>
                    </div>
                </div>
            </a>
        </div>
    </div>
    

    Best Regards,
    Jelly Team