How can I adjust the 'continue shopping' button placement on my cart page?

Topic summary

A user wants to reposition the ‘continue shopping’ button on their cart page to appear centered below the ‘YOUR CART’ heading.

Proposed Solution:
Another community member suggests adding CSS code to achieve this layout change:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the active theme
  • Locate the CSS file in the Assets folder (typically base.css, style.css, or theme.css)
  • Add the following CSS at the bottom of the file:
.title-wrapper-with-link {
    flex-direction: column;
    align-items: center;
}
  • Save the changes

The solution includes a reference image showing the desired button placement. The discussion appears to be ongoing, awaiting confirmation from the original poster on whether this solution meets their needs.

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

On my cart page I would like “continue shopping” to be under “YOUR CART” and centered right below it

uRL is www.daughterofanangel.com

1 Like

Hi @jennarose

Do you mean like this?

If it is try the code.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.title-wrapper-with-link {
    flex-direction: column;
    align-items: center;
}
  • And Save.