diff --git a/src/app/positionmanager.cpp b/src/app/positionmanager.cpp
index b9d97f08ed2f42fff9d133e269bea001119832bc..df5d52659310d6471f6a60251776494440594376 100644
--- a/src/app/positionmanager.cpp
+++ b/src/app/positionmanager.cpp
@@ -486,7 +486,7 @@ PositionManager::addPositionToMap(PositionKey key, QVariantMap position)
         bestName = accountInfo.contactModel->bestNameForContact(uri);
 
     QString shorterAuthorName = bestName;
-    shorterAuthorName.truncate(10);
+    shorterAuthorName.truncate(20);
     if (bestName != shorterAuthorName) {
         shorterAuthorName = shorterAuthorName + "…";
     }
diff --git a/src/app/webengine/map/map.js b/src/app/webengine/map/map.js
index 144a6cbb88f6d2b01b483d2fa6a923e729fc904d..c7ddca89c89cb2546c8db9ec4f39d51f0f91611d 100644
--- a/src/app/webengine/map/map.js
+++ b/src/app/webengine/map/map.js
@@ -97,7 +97,7 @@ function setSource (coordos, avatar, authorName) {
     textLabel.setStyle(new ol.style.Style({
       text: new ol.style.Text({
         text: textLabel.get('text'),
-        font: '20px Arial',
+        font: '15px Arial',
         fill: new ol.style.Fill({
           color: 'black'
         }),