diff --git a/css/style.css b/css/style.css
index 4e53d841408018d841387d4c6e71b8af7a714613..c24722874ee53eb066d01a14adf7e086af2c8313 100644
--- a/css/style.css
+++ b/css/style.css
@@ -462,4 +462,8 @@ button{
         width: 100%;
     }
 
+    #newestPost{
+        display: none;
+    }
+
 }
\ No newline at end of file
diff --git a/include/footer.php b/include/footer.php
index da1cb598e9d0144e6140990d2fcb889355ff0264..2e61e57d58c46bd10145fc796d7897a911a507fe 100644
--- a/include/footer.php
+++ b/include/footer.php
@@ -9,7 +9,7 @@ include "../internal/mysql.php";
         <a href="/bildquellen.html">Bildquellen</a><br>
         <a href="/impressum.php">Impressum</a><br>
     </div>
-    <div>
+    <div id="newestPost">
         <h3>Neueste Beitr&auml;ge:</h3>
         <?php
         $result = $conn->query("SELECT * FROM posts order by id desc limit $footerMaxPost");