Solved

Why isn't my Shopify cart checkbox section aligning correctly on PC?

MetteT
Explorer
63 4 4

I have a checkbox section in the cart on my page, and it is correctly centered on mobile, but on PC it aligns to the left instead of to the right like the rest of the text in the same section. How do i correct this?

 

Also is there a way to make the link in the sentence black, like the rest of the text. Right now its blue before clicked and purple after. I just want it to be black.

 

URL: https://teefiti.dk/cart/ Code: Teefiti2022

 

Screenshot 2022-11-24_13-09-43-748.png

Accepted Solution (1)
MandasaTech
Shopify Expert
723 146 153

This is an accepted solution.

@MetteT 

Add this code

<style>
.payment-terms {
text-align: right !important;
}

@media(min-width: 280px) and (max-width: 767px){
.payment-terms {
text-align: center !important;
}
}
</style>

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

View solution in original post

Replies 9 (9)

MandasaTech
Shopify Expert
723 146 153

@MetteT 


Go to Online store >> Edit code >> Assets >> base.css
Add this code below of base.css file


.payment-terms {
text-align: right !important;
}

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
MetteT
Explorer
63 4 4

@MandasaTech Unfortunately this didn't work. 😞

MandasaTech
Shopify Expert
723 146 153

@MetteT 


Add this CSS below of theme.liquid after closing body tag(</body>).

<style>

.payment-terms {
text-align: right !important;
}
</style>

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
MetteT
Explorer
63 4 4

@MandasaTech It worked, but now it is also aligned to the right on mobile, how do i make it so its centered on mobile, but aligned to the right on pc?

MandasaTech
Shopify Expert
723 146 153

This is an accepted solution.

@MetteT 

Add this code

<style>
.payment-terms {
text-align: right !important;
}

@media(min-width: 280px) and (max-width: 767px){
.payment-terms {
text-align: center !important;
}
}
</style>

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
MetteT
Explorer
63 4 4

@MandasaTech Thank you, this worked! Do you also have a code for making the link black?

ReturnPrime
Shopify Partner
438 63 102

Hey @MetteT    ,
Welcome to the Shopify community!
You can follow the instruction below:
Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file.

.payment-terms p{
    text-align: right !important;
}


 If you feel like my answer is helpful, please Like and mark it as a solution. Let me know if you have any further questions.
Thank you!
Raman

oscprofessional
Shopify Partner
15830 2369 3072

@MetteT 

.payment-terms a {
    color: black !important;
}
@media only screen and (min-width: 992px){
body .cart__ctas {
    text-align: right !important;
}
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->base.css.liquid

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
MetteT
Explorer
63 4 4

@oscprofessionalI have already managed to align the text with code i got from Mandasa, and the part of your code that should make the link black unfortunately doesnt work. 😞