diff --git a/webinterface.py b/webinterface.py
index 5d0a3fb6..b3560c28 100644
--- a/webinterface.py
+++ b/webinterface.py
@@ -5187,13 +5187,13 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
if os.path.isfile(leftColumnImageFilename):
editImageClass = 'leftColEditImage'
htmlStr += \
- '
\n' + \
+ '\n \n' + \
' \n' + \
' \n'
if editImageClass == 'leftColEdit':
- htmlStr += ' \n'
+ htmlStr += '\n \n'
if moderator:
# show the edit icon
@@ -5217,7 +5217,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
iconsDir + '/rss.png" />\n'
if editImageClass == 'leftColEdit':
- htmlStr += ' \n'
+ htmlStr += ' \n'
else:
htmlStr += '
\n'
@@ -5298,13 +5298,13 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str,
if os.path.isfile(rightColumnImageFilename):
editImageClass = 'rightColEditImage'
htmlStr += \
- ' \n' + \
+ '\n \n' + \
' \n' + \
' \n'
if editImageClass == 'rightColEdit':
- htmlStr += ' \n'
+ htmlStr += '\n \n'
if moderator:
# show the edit icon
@@ -5319,7 +5319,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str,
iconsDir + '/edit.png" />\n'
if editImageClass == 'rightColEdit':
- htmlStr += ' \n'
+ htmlStr += ' \n'
else:
htmlStr += '
\n'
return htmlStr