diff --git a/hosting/static/hosting/css/virtual-machine.css b/hosting/static/hosting/css/virtual-machine.css
index a14abc31..6bd2ab1e 100644
--- a/hosting/static/hosting/css/virtual-machine.css
+++ b/hosting/static/hosting/css/virtual-machine.css
@@ -618,9 +618,7 @@
     left: 8px;
   }
   .table-switch .last-td {
-    position: absolute;
-    bottom: 13px;
-    right: 0;
+    text-align: right;
   }
   .table-switch tbody tr .xs-td-inline {
     text-align: right;
diff --git a/hosting/templates/hosting/orders.html b/hosting/templates/hosting/orders.html
index 4230ce0b..d747979d 100644
--- a/hosting/templates/hosting/orders.html
+++ b/hosting/templates/hosting/orders.html
@@ -31,7 +31,7 @@
                     <td class="xs-td-inline" data-header="{% trans 'Order Nr.' %}">{{ order.id }}</td>
                     <td class="xs-td-bighalf" data-header="{% trans 'Date' %}">{{ order.created_at | date:"M d, Y H:i" }}</td>
                     <td class="xs-td-smallhalf" data-header="{% trans 'Amount' %}">{{ order.price|unlocalize }}</td>
-                    <td class="text-right xs-td-inline">
+                    <td class="text-right last-td">
                         <a class="btn btn-order-detail" href="{% url 'hosting:orders' order.pk %}">{% trans 'See Invoice' %}</a>
                     </td>
                 </tr>