Change size of text for footer

Topic summary

Goal: Reduce the footer text size to match a smaller example.

What was done:

  • Guidance provided to edit Shopify theme.liquid (Online Store → Edit Code → theme.liquid) and add custom code above the tag to shrink footer text. A result screenshot shows the change, but the exact code snippet is not visible in the transcript.
  • For the footer Menu (policy links), a CSS rule was shared to set smaller text: .list-menu__item–link { font-size: 12px !important; } to be added near the end of theme.liquid (above ). A result image confirms the policy links were reduced in size.

Follow-up requests:

  • Also requested: reduce the “About Us” footer title size. No specific code for the title was provided in the thread.

Notes:

  • theme.liquid is the main layout file; CSS (font-size) adjusts text size.
  • Multiple screenshots illustrate desired look and applied results.

Status:

  • Policy links size change resolved.
  • General footer text change implied but code not shown.
  • Title (“About Us”) sizing remains unanswered; discussion appears open.
Summarized with AI on December 14. AI used: gpt-5.

I want to change the size of my text in my footer. I want it to be smaller

This is my website, www.rosella-elegance.com , and I want to change it to a size like this:

Hey @ads18922

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

hi, could you also change the size of the Menu (Policy links) to the same size aswell, thanks

and also the title (About Us)

Hey @ads18922

Add this code above in the end of theme.liquid file.

.list-menu__item--link {
    font-size: 12px !important;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed