How can I change the font size in my DAWN store's footer menu?

Topic summary

A user needed help changing the font size in their DAWN theme’s footer menu.

Another community member provided a solution with step-by-step instructions:

  • Navigate to Online Store > Themes > Actions > Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add specific CSS code targeting either the footer menu items or copyright text, using media queries for responsive sizing

Resolution: The solution successfully resolved the initial issue. The original poster then asked a follow-up question about increasing spacing between menu items, which remains unanswered in this thread.

Note: Some text in the conversation appears reversed/encoded, but the technical solution and outcome are clear.

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

I have not been succesful at changing the font size on the footer menu of my store, please help me.

see picture below.

1 Like

https://selfmademembers.com/

Hi @US-SELFMADE

Do you mean the copy right? This one?

Made4uoRibe_0-1701212429681.png

If it is check this one.

  • 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:
@media screen and (min-width: 750px){
.footer__copyright.caption a {
    font-size: 1.1rem !important;
}
}
  • Or the other menu?
  • Made4uoRibe_1-1701212537433.png
@media screen and (min-width: 750px) {
.footer-block.grid__item.footer-block--menu li {
    font-size: 1.8rem !important;
}
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you so much, it worked. I have one more question, how do I increase the space between menu items