How can I alter the font of my website's copyright and cart text?

Topic summary

A user wants to change the font styling of their website’s copyright and cart text, which currently appears in the heading font instead of the body text font.

Current Issue:

  • Copyright and cart text display in heading style rather than body text style
  • User provided screenshots showing the footer and cart page

Responses:

  • One commenter couldn’t identify the font difference and asked for clarification on which body font should be used
  • Another user provided CSS code to modify footer text styling (font-size and font-weight properties in theme.css file)
  • Follow-up questions asked about the current font and what troubleshooting steps have already been attempted

Status: The discussion remains open with no confirmed resolution. The user has not yet responded to clarifying questions or indicated whether the suggested CSS solution worked.

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

Hi there

I would like to change the copyright and the cart text to settings from the body text.

Currently both are looking like the heading’s

www.thebasicscollection.com

I just took a quick look at your website, and all the fonts seem to be the same.

What font is the body text that you want to change everything else to? Thanks.

@Zqdo Look, I want to have the copyright in the same font style than the other text in the footer:

Hello @admintb

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

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

.footer__aside p {
    font-weight: bold !important;
    font-size: 20px !important;
}
p.h5.text-center {
    font-weight: bold;
    font-size: 20px;
}
1 Like

What font is it currently? Also, what have you already tried to do to fix it? Thanks.