How do I remove the "CONTINUE SHOPPING" link on my cart page?

Hi all,

I only want to remove the “Continue Shopping” link on my checkout page (Picture is below). I have tried the below codes but they unfortunately didn’t work. I want to solve it step by step with pictures and where I should place the provided code/s exactly from your side. Thank you in advance.

First code I used:

cart-items.page-width.section-template--17749086863626__cart-items-padding> div > a { display: none !important; }

Second code I used:

.title-wrapper-with-link a
{display: none !important;}

My URL: https://u7yeji-na.myshopify.com/cart

add this

cart-items .title-wrapper-with-link a {
    display: none !important;
}

Or simpally check theme settings

hey @Mamdouh_USD


follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the ----->
before the body ----->
if this code work please do not forget to like and mark it solution

Hi @Mamdouh_USD ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.title-wrapper-with-link a.underlined-link {
    display: none !important;
}

Thanks!

Hi Mamdouh_USD,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before
.title-wrapper-with-link a {
    display: none;
}

It worked. Thank you @Mustafa_Ali :slightly_smiling_face:

hey @Mamdouh_USD thank you for your response if you need more help feel free to share it :blush: