diff --git a/src/main/webapp/scripts/app/owner-list/owner-list.template.html b/src/main/webapp/scripts/app/owner-list/owner-list.template.html
index ab97d650875799ba511215c5d8cc2ff0129fe20f..37603db6acd92035b54555e54f3051617a59e65f 100644
--- a/src/main/webapp/scripts/app/owner-list/owner-list.template.html
+++ b/src/main/webapp/scripts/app/owner-list/owner-list.template.html
@@ -10,10 +10,10 @@
     <thead>
     <tr>
         <th>Name</th>
-        <th>Address</th>
+        <th class="hidden-sm hidden-xs">Address</th>
         <th>City</th>
         <th>Telephone</th>
-        <th>Pets</th>
+        <th class="hidden-xs">Pets</th>
     </tr>
     </thead>
 
@@ -23,9 +23,9 @@
                 {{owner.firstName}} {{owner.lastName}}
             </a>
         </td>
-        <td>{{owner.address}}</td>
+        <td class="hidden-sm hidden-xs">{{owner.address}}</td>
         <td>{{owner.city}}</td>
         <td>{{owner.telephone}}</td>
-        <td><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
+        <td class="hidden-xs"><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
     </tr>
 </table>
\ No newline at end of file