Hi everyone
New to using shopify, not a techie at all.
I have added this liquid code line on my cart to show progress on getting free shipping:
0 AED 150 AED
{% if cart.items.size == 0 %}Add items to your cart to receive free shipping.{% endif %}{% if cart.items.size != 0 %}{% if cart.total_price >= 15000 %} You’ve got free shipping
{% elsif cart.total_price < 15000 %}You’re only {{ 15000 | minus: cart.total_price | money }} away from free shipping.{% endif %}{% endif %}
How can I center this line on my screen?


