diff --git a/frontend-js/src/main/js/gui/leftPanel/Footer.js b/frontend-js/src/main/js/gui/leftPanel/Footer.js
index 95f2564a1e93c0d8337a7e86fdac46360e16f25a..e0cf37b7111884589a424f55c51da7987025aecf 100644
--- a/frontend-js/src/main/js/gui/leftPanel/Footer.js
+++ b/frontend-js/src/main/js/gui/leftPanel/Footer.js
@@ -21,6 +21,7 @@ Footer.prototype.constructor = Footer;
 Footer.prototype._createFooterGui = function(message) {
   var self = this;
   var projectId = self.getMap().getProject().getProjectId();
+  self.getElement().className = "footerLinks";
 
   var link = Functions.createElement({
     type : "a",
@@ -30,7 +31,7 @@ Footer.prototype._createFooterGui = function(message) {
   });
   link.href = ServerConnector.getServerBaseUrl() + "/admin.xhtml?id=" + projectId;
   self.getElement().appendChild(link);
-  
+
   link = Functions.createElement({
     type : "a",
     name : "footerManualLink",
@@ -39,7 +40,7 @@ Footer.prototype._createFooterGui = function(message) {
   });
   link.href = "#";
   link.onclick = function() {
-    return ServerConnector.getConfigurationParam(ConfigurationType.USER_MANUAL_FILE).then(function(manualFileUrl){
+    return ServerConnector.getConfigurationParam(ConfigurationType.USER_MANUAL_FILE).then(function(manualFileUrl) {
       var win = window.open(manualFileUrl, '_user_manual_');
       win.focus();
     });