diff --git a/css/components/islandora_mods.css b/css/components/islandora_mods.css
index b31bea7..d1acf33 100755
--- a/css/components/islandora_mods.css
+++ b/css/components/islandora_mods.css
@@ -2,6 +2,7 @@
.audio-tooltip {
position: absolute;
background: #2d2d2d;
+ background: #9a5152;
color: white;
padding: 8px 12px;
border-radius: 6px;
diff --git a/js/audio-tooltip.js b/js/audio-tooltip.js
index da94215..09d26ec 100644
--- a/js/audio-tooltip.js
+++ b/js/audio-tooltip.js
@@ -10,7 +10,7 @@
// Create tooltip
const tooltip = document.createElement('div');
tooltip.className = 'audio-tooltip';
- tooltip.innerHTML = `Go to page →`;
+ tooltip.innerHTML = `View Transcript →`;
document.body.appendChild(tooltip);
let cleanup = null;