diff --git a/guestbook/fetch.js b/guestbook/fetch.js
index d422dc4..8b9da70 100644
--- a/guestbook/fetch.js
+++ b/guestbook/fetch.js
@@ -1,4 +1,4 @@
-fetch('https://corsproxy.io/?https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3Ds%26i%3Dg26-39906-27')
+fetch('https://api.allorigins.win/raw?url=https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3Ds%26i%3Dg26-39906-27')
     .then(response => response.text())
     .then(html => {
         let parser = new DOMParser();
@@ -6,8 +6,8 @@ fetch('https://corsproxy.io/?https%3A%2F%2Fusers2.smartgb.com%2Fg%2Fg.php%3Fa%3D
         let entries = doc.querySelectorAll('table[bgcolor="#F4F4F4"]');
 
         entries.forEach(entry => {
-            let dateElement = entry.querySelector('tr > td > font > b');
-            let date = dateElement && dateElement.textContent.includes('Date:') ? dateElement.textContent.replace('Date:', '').trim() : 'No date';
+            let dateElement = entry.querySelector('tr > td > font');
+            let date = dateElement.parentNode.nextSibling.textContent.trim();
             let name = entry.querySelector('tr:nth-child(2) td:nth-child(2)') ? entry.querySelector('tr:nth-child(2) td:nth-child(2)').textContent.trim() : 'No name';
             let email = entry.querySelector('tr:nth-child(3) td:nth-child(2) a') ? entry.querySelector('tr:nth-child(3) td:nth-child(2) a').textContent.trim() : 'No email';
             let web = entry.querySelector('tr:nth-child(4) td:nth-child(2) a') ? entry.querySelector('tr:nth-child(4) td:nth-child(2) a').textContent.trim() : 'No website';
diff --git a/guestbook/index.html b/guestbook/index.html
index ef2d847..4933fef 100644
--- a/guestbook/index.html
+++ b/guestbook/index.html
@@ -10,7 +10,7 @@
 </head>
 <body>
     
-    <h1>Guestbook from <a href="https://users2.smartgb.com/g/g.php?a=s&i=g26-39906-27">SmartGB</a></h1>
+    <h1>Guestbook from <a href="https://users2.smartgb.com/g/g.php?a=s&i=g26-39906-27">SmartGB</a> <h6>(fentseller.lol is not affiliated with SmartGB)</h6>  </h1>
 
     <div id="guestbook-container"></div>
     <div id="error"></div>
diff --git a/guestbook/style.css b/guestbook/style.css
index 33571d2..974bc6f 100644
--- a/guestbook/style.css
+++ b/guestbook/style.css
@@ -8,6 +8,10 @@
     src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
 }
 
+h6 {
+    margin-top: -10px;
+}
+
 body {
     background-color: #505050;
     font-family: 'Hack', 'JetBrainsMono', monospace;