Continue shopping button reduce font size (Dawn theme)

Topic summary

A user wants to reduce the font size of the “Continue shopping” button to 1.3rem in the Dawn theme.

Solutions provided:

  • CSS modification approach: Navigate to Online Store → Themes → Actions → Edit Code → base.css, then add the following CSS at the end of the file:
a.underlined-link {
  font-size: 1.3rem !important;
}
  • Alternative method mentioned: Another responder began outlining steps involving editing theme.liquid file by adding markup code before the </body> tag, though the complete solution wasn’t fully detailed.

The discussion remains open as the original poster hasn’t confirmed which solution worked or if the issue was resolved.

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

Hello dear community!

I would like to reduce the font size of the “Continue shopping” button to 1.3rem. Is it possible?

Website - maisonmagdalena.com
Password - MaisonMagdalena.222

Hello @MagdalenaBB
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.

a.underlined-link {
font-size: 1.3rem !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

hi @MagdalenaBB ,

Step 1: Go to Admin → Online store → Theme > Edit code

Step 2: Search for the file theme.liquid

Step 3: Add this code before tag


1 Like