diff --git a/erpnext/public/scss/website.scss b/erpnext/public/scss/website.scss
index 7b9a70d232e..735b417da17 100644
--- a/erpnext/public/scss/website.scss
+++ b/erpnext/public/scss/website.scss
@@ -78,3 +78,7 @@
z-index: 0;
}
}
+
+.place-order-container {
+ text-align: right;
+}
\ No newline at end of file
diff --git a/erpnext/templates/includes/order/order_taxes.html b/erpnext/templates/includes/order/order_taxes.html
index 4a32aa47446..ebec838d03e 100644
--- a/erpnext/templates/includes/order/order_taxes.html
+++ b/erpnext/templates/includes/order/order_taxes.html
@@ -10,16 +10,16 @@
{% endif %}
{% for d in doc.taxes %}
-{% if d.base_tax_amount > 0 %}
-
- |
- {{ d.description }}
- |
-
- {{ d.get_formatted("base_tax_amount") }}
- |
-
-{% endif %}
+ {% if d.base_tax_amount %}
+
+ |
+ {{ d.description }}
+ |
+
+ {{ d.get_formatted("base_tax_amount") }}
+ |
+
+ {% endif %}
{% endfor %}
{% if doc.doctype == 'Quotation' %}
diff --git a/erpnext/templates/pages/cart.html b/erpnext/templates/pages/cart.html
index 912702e386d..3033d1587d6 100644
--- a/erpnext/templates/pages/cart.html
+++ b/erpnext/templates/pages/cart.html
@@ -12,16 +12,6 @@
{% block header_actions %}
-{% if doc.items and cart_settings.enable_checkout %}
-
-{% endif %}
-{% if doc.items and not cart_settings.enable_checkout %}
-
-{% endif %}
{% endblock %}
{% block page_content %}
@@ -55,6 +45,20 @@
{{ _('Your cart is Empty') }}
{% endif %}
+ {% if doc.items %}
+
+ {% if cart_settings.enable_checkout %}
+
+ {% else %}
+
+ {% endif %}
+
+ {% endif %}
+
{% if doc.items %}
{% if doc.tc_name %}