diff --git a/webapp/src/app/core/components/footer/footer.component.scss b/webapp/src/app/core/components/footer/footer.component.scss
index 8be8f2276a2b672bd7962858c70fa9fb1a91cc05..6fa66e2b63e182871101fac248f447c48db75000 100644
--- a/webapp/src/app/core/components/footer/footer.component.scss
+++ b/webapp/src/app/core/components/footer/footer.component.scss
@@ -12,6 +12,15 @@ img, .social-network-link {
   vertical-align: middle;
 }
 
+.social-network-link {
+  color: red;
+}
+
+.left-border {
+  padding-left: 10px;
+  margin-left: 5px;
+}
+
 ul {
   padding-left: 0px;
   margin: 0px;
diff --git a/webapp/src/app/editorialisation/components/wordpress-posts-list/wordpress-posts-list.component.html b/webapp/src/app/editorialisation/components/wordpress-posts-list/wordpress-posts-list.component.html
index 329352ccd08f4b84e5c022e88ea35e5dce5a5169..efe34ab032113d04c68b585d25e9054a714c74ec 100644
--- a/webapp/src/app/editorialisation/components/wordpress-posts-list/wordpress-posts-list.component.html
+++ b/webapp/src/app/editorialisation/components/wordpress-posts-list/wordpress-posts-list.component.html
@@ -1,8 +1,7 @@
 <div class="tile is-ancestor" *ngIf="posts">
-    <div class="row">
-        <div class="col-md-4" *ngFor="let post of posts | slice:0:3" style="margin-top: 20px;">
-            <app-wordpress-posts-list-tile class="tile is-parent" [post]='post'>
-            </app-wordpress-posts-list-tile>
-        </div>
-    </div>
-</div>
\ No newline at end of file
+  <ng-container  *ngFor="let post of posts | slice:0:3">
+    <app-wordpress-posts-list-tile class="tile is-parent" [post]='post'>
+    </app-wordpress-posts-list-tile>
+</ng-container>
+
+</div>
diff --git a/webapp/src/index.html b/webapp/src/index.html
index 0db9763af1e9fb8edd6c5c78a19468c20403583b..310a3ab7f3b80360f782e3f80fa46cceeaf487f5 100644
--- a/webapp/src/index.html
+++ b/webapp/src/index.html
@@ -11,6 +11,7 @@
   <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
   <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
+  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
 
 </head>