The HTML output on a page seems to be semantically incorrect ids need to unique, the HTML output that is being rendered now all the images are getting an id of`elevate_zoom--lens_zoom_gallery`. If you change the id to a class this would solve the issue.
It seems to be an easy enough fix in the template file called `elevate-image-zoom-template.html.twig` change,
<img id="{{ elevate_class }}" src="{{ images.images_url }}" data-zoom-image="{{ images.zoom_image_url }}"/>
to
<img class="{{ elevate_class }}" src="{{ images.images_url }}" data-zoom-image="{{ images.zoom_image_url }}"/>
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | Semantically-incorrect-3034224-3.patch | 1006 bytes | shruthi_shetty |
Comments
Comment #2
purencool commentedComment #3
shruthi_shetty commentedSemantically incorrect corrected.
Comment #5
keshavv commentedComment #6
keshavv commented