diff --git a/lang/en.json b/lang/en.json
index 4921bda1f1ef5b054f25425d9b80fdcc32b03c3b..821c9616c8580c6dcf1059f4663c7cf655d76a16 100755
--- a/lang/en.json
+++ b/lang/en.json
@@ -259,6 +259,7 @@
 		"availableValues" : "Available values",
 		"noAvailableValue" : "No available value",
 		"autocompleteInfo" : "The criteria must contain at least&nbsp;<b>3 letters</b>",
-		"availableUsers" : "Available users"
+		"availableUsers" : "Available users",
+		"signatureInDocAdded" : "Signature added in bottom document"
 	}
 }
diff --git a/lang/fr.json b/lang/fr.json
index fe4fa47b6d95542c59688643df6daf7d943be849..6e8b5d6c6519617223cd3a0c90303897bd26ecfb 100755
--- a/lang/fr.json
+++ b/lang/fr.json
@@ -260,6 +260,7 @@
 		"availableValues" : "Valeur(s) disponible(s)",
 		"noAvailableValue" : "Aucun élément disponible",
 		"autocompleteInfo" : "La recherche doit contenir au minimum&nbsp;<b>3 caractères</b>",
-		"availableUsers" : "Utilisateur(s) disponible(s)"
+		"availableUsers" : "Utilisateur(s) disponible(s)",
+		"signatureInDocAdded" : "Signature apposée en bas du document"
 	}
 }
diff --git a/src/frontend/app/signatures/signatures.component.ts b/src/frontend/app/signatures/signatures.component.ts
index 9c7c402758ba18d1dec7205efb5f0053d7b3ea9f..b70f12a0a4f23a2142932169ef0b8d62023f8a1a 100755
--- a/src/frontend/app/signatures/signatures.component.ts
+++ b/src/frontend/app/signatures/signatures.component.ts
@@ -71,8 +71,8 @@ export class SignaturesComponent implements OnInit {
 
     selectSignature(signature: any, img: any) {
 
-        signature.positionX = 2;
-        signature.positionY = (-(this.signaturesService.y - 110) * 100) / this.signaturesService.workingAreaHeight;
+        signature.positionX = 60;
+        signature.positionY = 80;
 
         const percentWidth = (this.renderer.selectRootElement('#' + img).naturalWidth * 100) / this.renderer.selectRootElement('#snapshotPdf').naturalWidth;
 
@@ -83,7 +83,7 @@ export class SignaturesComponent implements OnInit {
         }
         this.signaturesService.signaturesContent[this.signaturesService.currentPage].push(JSON.parse(JSON.stringify(signature)));
         this.localStorage.save(this.signaturesService.mainDocumentId.toString(), JSON.stringify({'sign' : this.signaturesService.signaturesContent, 'note' : this.signaturesService.notesContent}));
-
+        this.notificationService.success('lang.signatureInDocAdded');
         this.bottomSheetRef.dismiss();
     }