Hide store name + change font for footer menu in Dawn 2.0

How do I hide the store name and use a custom font for my footer menu items using the Dawn 2.0 theme?

My store URL is https://souvenir-the-store.myshopify.com/ while the password is cookiebutter. Thank you.

Hi @lextui ,

Thanks for reaching out to the Shopify Community with your question!

First, let me show you how to change the heading in your footer:

  1. From your Shopify admin, go to Online Store > Themes. Choose the live theme and click Customize.
  2. Scroll all the way down to Footer, click on the small arrow to the left of Footer.
  3. Click on Heading and delete it.

Second, changing the footer’s font by editing the theme’s stylesheet:

  1. Create a backup because any edits of CSS or JS in the assets folder are not versioned. Go to Online Store > Themes and then Actions > Duplicate. Good, now you’re safe if something does go wrong.
  2. Go to Actions > Edit code and open the file in Assets / theme.scss.liquid and add this to the very bottom. Remember to replace “Font name” with an existing in your theme.
  3. Hit Save and have a look
.site-footer .rte span,
.site-footer .rte p {
  font-family: "Font name";
}

If you find my answer helpful, please mark it as SOLUTION.

Hi, thank you for sending this!

  1. Upon checking the footer, I can’t find a “header” block that can be hidden. It says “Heading required to display the menu.” when I select the store name.

  2. As for the theme.scss.liquid asset, it doesn’t exist in my theme. Is there another way to edit the font?

Thank you :slightly_smiling_face:

1 Like