I use the sense theme , how do I remove the continue shopping button, here is the link to my site:
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-linkclass - Target specific selectors like
.shopifyCartContent.cart-items__paddingor.section-template--16187392940withdisplay: none !important
Common implementation methods:
- Add CSS to
assets/base.cssfile (bottom) - Insert code in
theme.liquidbefore</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.
Hi @igoorwq ,
Glad to support you today.
You can check out my suggestion below to get your concern resolved.
- Go to Edit code on Online Store:
- 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â
-
Go to Online Store â Theme â Edit code.
-
Open your theme.liquid file
-
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
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



