How can I modify cart font and add padding below 'add to cart'?

I am trying to chnage the font of the cart bits (like price, total, quantity etc…) to be lovato regular, like the rest of the site. I want it all to be lovato regular

Additionally I would like to add some padding below ‘add to cart’

Any help is much appreciated!

Pete

https://laz-the-plant-scientist.myshopify.com

P word test

Theme blockshop

@peter550

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

.cart--headings>* { font-family: 'Lovato Regular' !important;}

Thanks!

1 Like

Please below line of code in css file

.template--cart [data-item=accent-text] {
    font-family: 'Lovato Regular' !important;
}
1 Like

Hiya @24by7themes @dmwwebartisan

That worked for some of it, but not the ‘Total’ at the bottom.

Also, do you have code to increase the padding below the word ‘Cart’?

@peter550

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

.cart--total--price {
    font-family: 'Lovato Regular' !important;
}

.cart--totals>:not(:last-child) {
    font-family: 'Lovato Regular' !important;
}

Thanks!

1 Like

@dmwwebartisan

unfortunately that still doesn’t work!