diff --git a/kjvstudy_org/templates/book.html b/kjvstudy_org/templates/book.html
index 77f6058..c5ed66b 100644
--- a/kjvstudy_org/templates/book.html
+++ b/kjvstudy_org/templates/book.html
@@ -115,12 +115,13 @@ document.addEventListener('DOMContentLoaded', function() {
.join('|');
// Function to create a link for a verse reference
+ // Single verses use /verse/ path (for tooltip support), ranges use #verse- anchor
function createVerseLink(book, chapter, verseStart, verseEnd, linkText) {
const normalizedBook = book.replace(/\s+/g, ' ');
if (verseEnd && verseEnd !== verseStart) {
return '' + linkText + '';
} else {
- return '' + linkText + '';
+ return '' + linkText + '';
}
}