diff --git a/bin/xymon-home.py b/bin/xymon-home.py
index 498e35f5f6f37bfb5d36edc1732ac94a2cd9a435..4683742ed21303cea4785f1cc12f28596ba6855c 100755
--- a/bin/xymon-home.py
+++ b/bin/xymon-home.py
@@ -228,7 +228,7 @@ def run_check(xymon):
 
     if bad_home_directory:
         title = 'bad homeDirectory'
-        content = 'the homeDirectory attributes home name does not match the username'
+        content = 'the homeDirectory attributes home name does not match the username<br/><br/>'
         for home in bad_home_directory:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -236,7 +236,7 @@ def run_check(xymon):
 
     if no_ldap_user:
         title = 'no user for home'
-        content = 'home directory without a corresponding ldap user'
+        content = 'home directory without a corresponding ldap user<br/><br/>'
         for home in no_ldap_user:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -244,7 +244,7 @@ def run_check(xymon):
 
     if bad_nis_map:
         title = 'bad nismaps (home)'
-        content = 'nismap does not match home path on the filesystem'
+        content = 'nismap does not match home path on the filesystem<br/><br/>'
         for home in bad_nis_map:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -252,7 +252,7 @@ def run_check(xymon):
 
     if no_nis_map:
         title = 'no nismap for home'
-        content = 'home directory without a corresponding nismap entry'
+        content = 'home directory without a corresponding nismap entry<br/><br/>'
         for home in no_nis_map:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)