Shopify themes, liquid, logos, and UX
How do I move these words to the right side on mobile for all my product pages? My url is www.whoglobal.shop
Hi @samueljoonjung. I see that you have already moved the "Size Guide".
Here's how to move the "Free shipping" text:
1. Navigate to Sales Channels → Online Store → "Customize" button → Theme settings (Gear icon on the left sidebar) → Custom CSS
2. Add the following code:
@media screen and (max-width: 767px) {
p.product__text:not(:has(.subtitle)) {
text-align: right !important;
}
}
3. Save (right top corner)
4. Hard refresh the storefront
If done correctly, the result should be like this:
That moves the "WHO Hoodie" with it which I don't want
There was a small logic error.
I see you solved it with "float" already. In case you want to preserve the padding, here's an updated code:
@media screen and (max-width: 767px) {
p.product__text:not(.subtitle) {
text-align: right !important;
}
}
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025