diff --git a/src/app/components/shared/questionwall/question-wall/question-wall.component.html b/src/app/components/shared/questionwall/question-wall/question-wall.component.html
index 2313b826c9459ac006b868ef7ed87b6f21f9a017..baea087e92ce7d22d672d5c7e3dfb49124ae9ac3 100644
--- a/src/app/components/shared/questionwall/question-wall/question-wall.component.html
+++ b/src/app/components/shared/questionwall/question-wall/question-wall.component.html
@@ -51,7 +51,9 @@
               <h2 class="questionwall-present-meta-timestamp">{{commentFocus.timeAgo}}</h2>
             </ars-row>
             <ars-row>
-              <p class="questionwall-present">{{commentFocus.comment.body}}</p>
+              <ars-row class="bound" style="padding:16px 32px 16px 32px;">
+                <markdown [data]="commentFocus.comment.body"></markdown>
+              </ars-row>
             </ars-row>
           </ng-container>
           <ng-container *ngIf="!commentFocus">
diff --git a/src/app/components/shared/questionwall/question-wall/question-wall.component.scss b/src/app/components/shared/questionwall/question-wall/question-wall.component.scss
index 864b6ca8547fd567c976b264f18b3c6933ad5bd4..5bece8d8b2e79e27aa464403ce6371f0b138197e 100644
--- a/src/app/components/shared/questionwall/question-wall/question-wall.component.scss
+++ b/src/app/components/shared/questionwall/question-wall/question-wall.component.scss
@@ -170,4 +170,8 @@
     }
   }
 
+  .bound img{
+    max-width:100%;
+  }
+
 }