How to remove "Continue shopping in cart" SENSE theme

Topic summary

A Shopify store owner using the Sense theme wants to remove the “Continue shopping” button/link from their cart page.

Multiple solutions provided:

  • Add CSS code to hide the element using .title-wrapper-with-link class
  • Target specific selectors like .shopifyCartContent.cart-items__padding or .section-template--16187392940 with display: none !important

Common implementation methods:

  • Add CSS to assets/base.css file (bottom)
  • Insert code in theme.liquid before </body> tag
  • Some suggest wrapping in conditional Liquid tags {% if template contains 'cart' %}

Issue encountered:
Initial solutions didn’t work for the user - instead of removing the button, they only reduced text size.

Resolution:
After clarifying with a screenshot showing the exact element to remove, more specific CSS targeting cart-items.page-width.section-template was provided. The user confirmed this solution worked with “Thank you so much.”

Status: Resolved - the continue shopping link was successfully hidden using custom CSS.

Summarized with AI on November 21. AI used: claude-sonnet-4-5-20250929.

I use the sense theme , how do I remove the continue shopping button, here is the link to my site:

onlypetstm.com

Hi @igoorwq ,

Glad to support you today.

You can check out my suggestion below to get your concern resolved.

  1. Go to Edit code on Online Store:

  1. add my code above the tag on Theme.liquid:

Hope you find my answer helpful!

Kind & Best regards,
GemPages Support Team.

Please add below css code in bottom of assets/base.css file

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

}
Thank you.

Hello @igoorwq

You can add code by following these steps to remove “CONTINUE SHOPPING”

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

{% if template contains ‘cart’ %}

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

{% endif %}

Hello @igoorwq

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

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

@igoorwq
add below code into theme.liquid file before closing tag

{% if template contains 'cart' %}

{% endif %}

Hi @igoorwq

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the css file:

.icartShopifyCartContent .shopify-section .section-template--18296118739249__cart-items-padding .title-wrapper-with-link a.underlined-link {display: none !important;}

Regards,

San

doesn’t work for some reason, instead it reduces the text

doesn’t work for some reason

Hello @igoorwq

Do you want to remove this button?

yes

Hello @igoorwq

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

cart-items.page-width.section-template--18296118739249__cart-items-padding .title-wrapper-with-link .underlined-link {
    display: none !important;
}

Hi @igoorwq

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

cart-items.page-width.section-template--18296118739249__cart-items-padding .title-wrapper-with-link .underlined-link {
    display: none !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

Thank you so much

1 Like