0
<section class="our-gallery" id="gallery">
<h3 class="text-center slideanim">Our Gallery</h3>
<p class="text-center slideanim">Lorem Ipsum is and typesetting industry.</p> 
<div class="container">
<div class="content slideanim">
<div class="chroma-gallery mygallery">
<img src="images/gallery-img1.jpg" alt="Click" data-largesrc="images/gallery-  img1.jpg">
<img src="images/gallery-img2.jpg" alt="Click" data-largesrc="images/gallery-img2.jpg">
<img src="images/gallery-img3.jpg" alt="Click" data-largesrc="images/gallery-img3.jpg">
<img src="images/gallery-img4.jpg" alt="Click" data-largesrc="images/gallery-img4.jpg">
<img src="images/gallery-img5.jpg" alt="Click" data-largesrc="images/gallery-img5.jpg">
<img src="images/gallery-img6.jpg" alt="Click" data-largesrc="images/gallery-img6.jpg">
<img src="images/gallery-img7.jpg" alt="Click" data-largesrc="images/gallery-img7.jpg">
<a href="abc.com"><img src="images/gallery-img8.jpg" ">     </a>
</div>
</div>
</div>
</section>
<!-- /Our Gallery -->

in the last one image href link is nor working it only zooming the image like other one. it using css of others

1
  • show your css of <div class="chroma-gallery mygallery"> Commented Dec 3, 2016 at 7:14

1 Answer 1

1

You have an extra apostrophe at the end of the image tag on the last item.

<a href="abc.com"><img src="images/gallery-img8.jpg" "></a>

Should be

<a href="abc.com"><img src="images/gallery-img8.jpg"></a>

instead.

Also, if you want the image not to use the same CSS as the others move it outside of the <div>

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.