Typo missing closing " on the class name:
Code:
<p>(Click the below image to enlarge)<br><img src="images/skriball_L.png" class="magnify data-magnifyto="800" style="width:350px; height:175px" /></p>
Try:
Code:
<img src="images/skriball_L.png" class="magnify" data-magnifyto="800" style="width:350px; height:175px" />
And you might want to double check that 350x175 is proportional (I think 350x153) would be closer, and/or go to the full native width (850) with the data-magnify attribute:
Code:
<img src="images/skriball_L.png" class="magnify" data-magnifyto="850" style="width:350px; height:153px" />
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks