diff --git a/src/main/webapp/app/home/home.component.html b/src/main/webapp/app/home/home.component.html
index f5f3955bd6830a3969d19e8128ca88c6ea976263..d80065d04dcfbfaddfce757eead7117329faf38b 100644
--- a/src/main/webapp/app/home/home.component.html
+++ b/src/main/webapp/app/home/home.component.html
@@ -3,7 +3,7 @@
     <div class="col-md-12">
     	<h1 style="padding: 50px 0px 15px 0px;" align="center" jhiTranslate="home.title">Browse our popular content</h1>
 		<!-- <h4 style="margin-bottom: 50px" align="center" jhiTranslate="home.subtitle">An optional subheadline for additional information</h4>  -->
-		<div jhiTranslate="home.teaser">teaser text </div>
+		<div jhiTranslate="home.teaser" style="width: 80%; margin-left: auto; margin-right: auto;">teaser text </div>
         <div [ngSwitch]="isAuthenticated()">
             <div class="alert alert-success" *ngSwitchCase="true">
                 <span id="home-logged-message" *ngIf="account" jhiTranslate="home.logged.message"
diff --git a/src/main/webapp/app/teaserContent/teaserContent.component.html b/src/main/webapp/app/teaserContent/teaserContent.component.html
index 8c014ad99ed652bcc076cc6fa1fa6b5bf2e3ff59..a62deef5cf7ee67c74dbd6284f224938caf8b427 100644
--- a/src/main/webapp/app/teaserContent/teaserContent.component.html
+++ b/src/main/webapp/app/teaserContent/teaserContent.component.html
@@ -3,19 +3,19 @@
 	<div class="col-sm-3">
 	  <p style="padding-left: 30px;"><strong>Keywords</strong></p>
 	  <ul style="list-style-type: circle;">
-                <li *ngFor="let keyWord of keywords"><a (click)="clickKeyword(keyWord)">{{keyWord}}</a></li>
+                <li *ngFor="let keyWord of keywords"><a (click)="clickKeyword(keyWord)"  style="cursor:pointer;">{{keyWord}}</a></li>
       </ul>
     </div>
 	<div class="col-sm-3">
 	  <p style="padding-left: 30px;"><strong>Programming Languages</strong></p>
 	  <ul style="list-style-type: circle;">
-                <li *ngFor="let programmingLanguage of programmingLanguages"><a (click)="clickLanguage(programmingLanguage)">{{programmingLanguage}}</a></li>
+                <li *ngFor="let programmingLanguage of programmingLanguages"><a (click)="clickLanguage(programmingLanguage)"  style="cursor:pointer;">{{programmingLanguage}}</a></li>
       </ul>
     </div>
 	<div class="col-sm-3">
 	  <p style="padding-left: 30px;"><strong>Contributors</strong></p>
 	  <ul style="list-style-type: circle;">
-                <li *ngFor="let contributor of contributors"><a (click)="clickContributor(contributor)">{{contributor}}</a></li>
+                <li *ngFor="let contributor of contributors"><a (click)="clickContributor(contributor)" style="cursor:pointer;">{{contributor}}</a></li>
       </ul>
     </div>
 </div>
\ No newline at end of file