All things Shopify and commerce
I'm using the Whisper theme on my Shopify store, and I need to align all the text on the checkout page to be left-to-right (LTR). Could someone guide me on how to make this adjustment?
URL - https://babyshield.online/
Thnak you!!
Yes, you can change the alignment of the Checkout text from Left-to-Right (LTR) to Right-to-Left (RTL) in Shopify. However, Shopify doesn't provide a direct option in the admin panel to change the text direction. You will need to customize the checkout process by adding custom CSS
.checkout .field__input-wrapper,
.checkout .content,
.checkout .order-summary__section {
direction: rtl;
text-align: right;
}
or JavaScript
document.addEventListener('DOMContentLoaded', function() {
document.querySelector('body').style.direction = 'rtl';
});
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025