Change size of text in footer

Topic summary

A user seeks help reducing oversized footer text on their Shopify store using the Dawn theme.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add custom CSS targeting footer elements:
    • .footer__block-details.content and .footer__block-details.content a: font-size 12px
    • .footer__block-heading.inline-richtext: font-size 15px
  • Apply media query for screens up to 749px width
  • Save changes

Status: The solution includes a screenshot showing the expected result. The user has not yet confirmed whether the fix resolved their issue.

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

hello, i would like to change the size of my text in the footer as it is too big.

I am using dawn theme

This is my store domain: qmpryp-cx.myshopify.com

and this is my password: chasha

1 Like

Hi @ads18922

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
@media only screen and (max-width: 749px){
.footer-block__details-content a, .footer-block__details-content.rte {
    font-size: 12px;
}

.footer-block__heading.inline-richtext {
    font-size: 15px;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!