diff --git a/brian_dashboard_manager/templating/render.py b/brian_dashboard_manager/templating/render.py
index ac5b847b2ac9ebcd4e6f9b49c606ddf32d2853e6..8671e15421a1ccb18e3fd4d3d219c3133fa69013 100644
--- a/brian_dashboard_manager/templating/render.py
+++ b/brian_dashboard_manager/templating/render.py
@@ -262,11 +262,17 @@ def create_panel(
 def create_infobox():
     return {
         "datasource": None,
-        "gridPos": {"h": 1, "w": 24, "x": 0, "y": 0},
+        "gridPos": {"h": 2, "w": 24, "x": 0, "y": 0},
         "id": 1,
-        "options": {"content": "", "mode": "html"},
+        "options": {
+            "content": """
+            <center style="margin-top:5px;">
+                INFO: The average values displayed are only mean values for timescales of 2 days or less
+            </center>""",
+            "mode": "html"
+        },
         "pluginVersion": "8.2.5",
-        "title": "INFO: The average values displayed are only mean values for timescales of 2 days or less",
+        "title": "",
         "type": "text",
     }