How can I adjust the margin-left of my cart subtotal with coding?

i have been working with coding and modifying my site and am quite familiar with coding however i can not figure out how to margin-left 100px my cart subtotal. as you can see on my cart page i was able to margin over the term subtotal however i can not figure out how to margin the subtotal abount display itself. my website address is www.titmoutdoorproducts.com to view the cart page. can someone please instruct me where in the coding i can fix this or an html code

Thank you

1 Like

@Ike-Shipley

can you please provide screenshot.

1 Like

@Ike-Shipley

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (min-width: 900px){
.cart-subtotal__price {
    margin-right: 20px;
}
}

Hope this works.

Thanks!

1 Like

hello @Ike-Shipley

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 900px){
    #shopify-section-cart-template   .cart-subtotal__price {
        margin-right: 20px;
    }
    }
1 Like

It Workded. Thank you