Hello,
Can someone please help me shift the product title down to the center of left product photo (After Adding to Cart)? This is for mobile. Thank you,
A user seeks help repositioning the product title on mobile devices after adding an item to cart. The title currently appears misaligned and needs to be centered below the product photo.
Solution provided:
@media only screen and (max-width: 749px) {
div#cart-notification-product {
align-items: center;
}
}
Outcome:
The solution successfully resolved the alignment issue. The user confirmed it worked perfectly.
Hello,
Can someone please help me shift the product title down to the center of left product photo (After Adding to Cart)? This is for mobile. Thank you,
Hi @l1kim
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
div#cart-notification-product {
align-items: center;
}
}
And Save.
Result:
Perfect! Thank you so much!!