diff --git a/src/app/components/creator/content-list/content-list.component.html b/src/app/components/creator/content-list/content-list.component.html
index 66634c88b1539f4e36bb4c6740483be9b71e0a13..abc34ee35cb4bef807b6e1c9106b5811ddcea85a 100644
--- a/src/app/components/creator/content-list/content-list.component.html
+++ b/src/app/components/creator/content-list/content-list.component.html
@@ -12,10 +12,10 @@
           <mat-icon>note_add</mat-icon>
         </button>
       </mat-card-actions>
-     <!-- <h4>{{ 'content.click-here' | translate}}<mat-icon>create</mat-icon></h4> -->
+     <h4>{{ 'content.click-here' | translate}}<mat-icon>create</mat-icon></h4>
       <mat-divider></mat-divider>
       <mat-list>
-        <mat-list-item *ngFor="let content of contents" (click)="deleteContent(content.subject)">
+        <mat-list-item *ngFor="let content of contents" (click)="editContent(content.subject)">
           <h3 mat-line>{{content.subject}}</h3>
           <p mat-line>
             <span>{{content.body}}</span>
diff --git a/src/app/components/creator/content-list/content-list.component.scss b/src/app/components/creator/content-list/content-list.component.scss
index 986ef664b91389944d84c1a32473dc0f13851c63..78241386f1f5f7d8366501090d6ed9621c1dfcea 100644
--- a/src/app/components/creator/content-list/content-list.component.scss
+++ b/src/app/components/creator/content-list/content-list.component.scss
@@ -1,8 +1,9 @@
 mat-card {
-  max-width: 800px;
-  min-width: 50%;
+    width: 800px;
+    background-color: #fff8e1;  //mat-color($arsnova-warn, 100);
 }
 
+
 mat-card-content > :first-child {
   margin-top: 16px;
 }
@@ -16,7 +17,7 @@ button {
 }
 
 h2 {
-  color: #3f51b5;
+  color: #90a4ae;
 }
 
 h3 {
diff --git a/src/app/components/creator/room-creator-page/room-creator-page.component.scss b/src/app/components/creator/room-creator-page/room-creator-page.component.scss
index 52c0c267b0d50c694ec78f1751ba503bb558f271..ced80f5cb5d2a856bfed823a9b83340defdb07a8 100644
--- a/src/app/components/creator/room-creator-page/room-creator-page.component.scss
+++ b/src/app/components/creator/room-creator-page/room-creator-page.component.scss
@@ -1,6 +1,6 @@
 @import '../../../../styles';
 
-.mat-card {
+mat-card {
   width: 800px;
   background-color: #fff8e1;  //mat-color($arsnova-warn, 100);
 }