diff --git a/themes/fid/templates/fid/order/list/entry.phtml b/themes/fid/templates/fid/order/list/entry.phtml
index 84151437c2dd663edd2adce42f1fef2cca9f060d..9bd12a9706279058c6ef755f355646fb4f9fabbc 100644
--- a/themes/fid/templates/fid/order/list/entry.phtml
+++ b/themes/fid/templates/fid/order/list/entry.phtml
@@ -1,5 +1,5 @@
 <!-- fid: fid - order - list - entry -->
-<?php foreach($this->displayCols as $col): ?>
+<?php foreach ($this->displayCols as $col): ?>
   <?php switch ($col):
     case 'user': ?>
       <td>
@@ -29,7 +29,7 @@
       <?php break; ?>
     <?php case 'status': ?>
       <td>
-          <?=$order->getStatus() ? $this->translate('fid::status_'.$order->getStatus()) : ''?>
+          <?=$order->getStatus() ? $this->translate('fid::status_' . $order->getStatus()) : ''?>
       </td>
       <?php break; ?>
     <?php case 'dueDate': ?>
diff --git a/themes/fid/templates/fid/order/list/headers.phtml b/themes/fid/templates/fid/order/list/headers.phtml
index 3196ce965304ca1724a7ea5857cd67ce0f4678cf..f468a656231d804c912b63087a0097f8f9c3443f 100644
--- a/themes/fid/templates/fid/order/list/headers.phtml
+++ b/themes/fid/templates/fid/order/list/headers.phtml
@@ -1,10 +1,10 @@
 <!-- fid: fid - order - list - headers -->
-<?php foreach($displayCols as $col): ?>
+<?php foreach ($displayCols as $col): ?>
   <?php switch ($col):
     case 'user': ?>
       <th><?=$this->translate('fid::order_user')?></th>
       <?php break; ?>
-    <? case 'type': ?>
+    <?php case 'type': ?>
       <th><?=$this->translate('fid::order_type')?></th>
       <?php break; ?>
     <?php case 'date': ?>
diff --git a/themes/fid/templates/fid/order/list/table.phtml b/themes/fid/templates/fid/order/list/table.phtml
index 4d1dbd23acdde696ddd64c022f550ee7f099a5aa..ade598386a41d4e5188e8cf9bfde73fcbcae5f4f 100644
--- a/themes/fid/templates/fid/order/list/table.phtml
+++ b/themes/fid/templates/fid/order/list/table.phtml
@@ -1,5 +1,5 @@
 <!-- fid: fid - order - list - table -->
-<table class="table">
+<table class="table table-striped table-resp-data-md">
     <?php /* Table head */ ?>
     <tr>
         <?=$this->render('fid/order/list/headers')?>