Solved

Can I align additional payment buttons to the left in Shopify?

donniederanged
Shopify Partner
33 0 2

Hey!

 

I am trying to align my additional payments buttons. 

 

alt.png

 

The ShopPay and MetaPay buttons would look more appealing on the left side of the screen. I can't figure out how it can be done though. www.deranged-shop.com / cart page.

 

Minimal theme.

Accepted Solution (1)

EBOOST
Shopify Partner
574 172 182

This is an accepted solution.

Hi @donniederanged 

May I suggest to update code these steps:

1. Go to Store Online-> theme -> edit code
2. Assets/theme.scss.css
3. Add code below to bottom of file

#dynamic-checkout-cart .shopify-cleanslate ul {
	justify-content: flex-start!important;
}
Hope can help

If you find my reply helpful, please hit Like and Mark as Solution

EBOOST

View solution in original post

Replies 2 (2)

EBOOST
Shopify Partner
574 172 182

This is an accepted solution.

Hi @donniederanged 

May I suggest to update code these steps:

1. Go to Store Online-> theme -> edit code
2. Assets/theme.scss.css
3. Add code below to bottom of file

#dynamic-checkout-cart .shopify-cleanslate ul {
	justify-content: flex-start!important;
}
Hope can help

If you find my reply helpful, please hit Like and Mark as Solution

EBOOST
donniederanged
Shopify Partner
33 0 2

Thank you!