Hi Josh,
I have done that ?? Installing Lightbox plugin didn’t help unfortunately. Don’t know actually why it didn’t help but it’s js files were not being included….might be conflicting with the existing plugins!!!
So I used custom lightbox script. Here I am putting it…just to help others if they want ??
Here you can check :-
https://www.point2realestate.com.au/vic/mount-eliza/5-bellevue-crescent/1529751/
I took this from Dynamic Drive Site :-
https://www.dynamicdrive.com/dynamicindex4/lightbox2/index.htm?PHPSESSID=02086fac5c6b724e1139ab5d68e4c356
Include js files :-
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="js/lightbox.js"></script>
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
Now for single image…use lightbox like this :-
<a href="images/big-image-1.jpg" rel="lightbox" title="my caption"><img src="path of thumbnail/big image #1"></a>
Now for multiple images…use lightbox like this :-
<a href="images/big-image-1.jpg" rel="lightbox[roadtrip/anytext]" title="my caption"><img src="path of thumbnail/big image #1"></a>
<a href="images/big-image-2.jpg" rel="lightbox[roadtrip/anytext]" title="my caption"><img src="path of thumbnail/big image #2"></a>
<a href="images/big-image-3.jpg" rel="lightbox[roadtrip/anytext]" title="my caption"><img src="path of thumbnail/big image #3"></a>
Thanks Josh again for your help ??