Buy me a coffee

Cart Page CSS

Add these codes to the Custom CSS box and click Save

Rename Cart Title

/* Rename Cart Title */
h2.cart-title {
    visibility: hidden;
}
h2.cart-title:before {
    visibility: visible;
    content: "New Shop Title";
}

Rename Cart Title 01 Min

Align center Cart Title

/* Align center Cart Title */
h2.cart-title {
   text-align: center;
}

Align Center Cart Title 01 Min

Add a subtext under the Cart Title

/* Add a subtext under Cart Title */
h2.cart-title:after {
  content: "Cart sub text";
  display: block;
  font-size: 14px;
}

Add A Sub Text Under Cart Title 01 Min

Rename “You have nothing in your shopping cart” text

/* Rename You have nothing in your shopping cart text */
p.empty-message {
    visibility: hidden;
}
p.empty-message:before {
  visibility: visible;
  content: "enter new text here";
}

Rename You Have Nothing Cart Text 01 Min

Rename “Continue Shopping” text

/* Rename Continue Shopping text */
a.cart-continue-button {
color: transparent !important;
position: relative;
}
a.cart-continue-button:after {
color: #fff;
content: 'Enter New Text';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 100%;
}

Rename Continue Shopping Text 01 Min

Change Continue Shopping URL

Follow the guide here

Product thumbnail size

/* product thumbnail size */
.cart-row-img-wrapper {
    width: 190px !important;
}

 

Product Thumbnail Size 01 Min

Variant size color

/* Variant size color */
p.cart-row-variant {
    color: #f1f;
    font-size: 20px !important;
}

Variant Size Color 01 Min

Remove quantity

/* remove quantity */
.cart-row-qty {
    display: none !important;
}

Remove price 

/* remove price */
p.cart-row-price {
    display: none;
}
.cart-subtotal {
    display: none;
}

X Color

/* X Color */
.cart-row-remove svg {
    fill: #f1f !important;
}

X Color 01 Min

Add a text under the checkout button

/* add a text under checkout button */
.cart-checkout:after {
    content: "enter new text here";
    text-align: left;
    font-size: 20px;
    margin-top: 10px;
}

Add A Text Under Checkout Button 01 Min

Remove checkout button

/* remove checkout button */
.cart-checkout-button {
    display: none !important;
}