How can I make the product title display from RTL instead of LTR on Whisper theme

Solved

How can I make the product title display from RTL instead of LTR on Whisper theme

JonBoy18
Tourist
8 0 2

Hi Everyone,

 

I'm using the 'Whisper' theme on my Shopify store, and I want to adjust the product titles so that they display from right to left (RTL) instead of the default left to right (LTR). Could you guide me on how to make this adjustment within the theme settings or through code customization?

 

Shopify Store URL - https://7ae6d6-3d.myshopify.com/products/1pc-baby-head-pillow-anti-fall-device-head-protective-pad-s...

 

Image -

 

LTR - RTL.png

 

 

Thank you all!

Accepted Solution (1)
Moeed
Shopify Partner
4992 1328 1610

This is an accepted solution.

Hey @JonBoy18 

 

Keep the previous code and add this new code above </style> in the end of the theme.liquid file

.card__information {
    text-align-last: right !important;
}

RESULT:

Moeed_0-1724659418640.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

Replies 7 (7)

Moeed
Shopify Partner
4992 1328 1610

Hey @JonBoy18 

 

Your website is password protected, can you share your password as well?

 

Best Regards,

Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
JonBoy18
Tourist
8 0 2

Hey,

Sorry about that

 

password - ahpeag

 

Thanks!

Moeed
Shopify Partner
4992 1328 1610

Hey @JonBoy18 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.product__title h1 {
    direction: rtl !important;
}
</style>

RESULT:

Moeed_0-1724658442061.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

 

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
JonBoy18
Tourist
8 0 2

That worked for the title only when i enter to the product. Can i change the title direction that is shown is the "Featured collection" also? 

 

product title.png

 

Thank you for your help!

Moeed
Shopify Partner
4992 1328 1610

This is an accepted solution.

Hey @JonBoy18 

 

Keep the previous code and add this new code above </style> in the end of the theme.liquid file

.card__information {
    text-align-last: right !important;
}

RESULT:

Moeed_0-1724659418640.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
JonBoy18
Tourist
8 0 2

Below  </style> it worked!

thanks you!

Moeed
Shopify Partner
4992 1328 1610

Thank you for your reply. I'm glad to hear that the solution worked well for you. If you require any more help, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️