Hi Marla. I have been looking for a solution also.
The workaround I currently use is to make the image open at full size in a new browser tab:
- Insert the image into the test question normally and save the question.
- Open the question’s source code and copy the image URL from the
src field. - Wrap the image in a link using the same URL for both
href and src:
<p><strong>Click the image to enlarge.</strong></p>
<p>
<a href="PASTE_IMAGE_URL_HERE" target="_blank" rel="noopener">
<img src="PASTE_IMAGE_URL_HERE"
alt="ECG rhythm strip"
style="max-width:100%; height:auto;">
</a>
</p>
The learner can then click the image to view the full-size version in a separate tab and return to the test tab to answer the question.
This works, but copying the URL and editing the source code for every question is cumbersome. I am planning an ECG rhythm-recognition assessment with several detailed images, so I am still hoping someone has found a simpler or more maintainable way to provide click-to-enlarge functionality in Docebo tests.