Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I would like to adjust the text align of the cart title (highligted in gray in the pic) to the right in the cart of dawn theme.
image:
password gahpro
Thanks
Solved! Go to the solution
This is an accepted solution.
use this code
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
@media screen and (min-width: 750px) {
cart-items .title-wrapper-with-link {
margin-left: 80rem !important;
}
}
Thanks
Hello @urbantis
Hello There,
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottow of the file:
cart-items .title-wrapper-with-link {
align-items: baseline;
}
Thank you for your reply, I added it but it's not changing the alignment to the right. Any thoughts?
Hello @urbantis
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottow of the file:
cart-items .title-wrapper-with-link {
align-items: baseline;
margin-left: 0!important;
}
Thanks for your reply, the title of the cart is not aligning to the right, am I missing something?
Hello @urbantis
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
cart-items .title-wrapper-with-link {
margin-left: 80rem !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Thanks for answering, it works on desktop but it is destroying the cart in mobile, any thoughts?
This is an accepted solution.
use this code
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
@media screen and (min-width: 750px) {
cart-items .title-wrapper-with-link {
margin-left: 80rem !important;
}
}
Thanks