Hi, i want to change the size of the text in my footer.
From this:
To this:
I’m using the dawn theme. My url is: https://t71vm9-qa.myshopify.com/
Best regards
A Shopify store owner using the Dawn theme wants to reduce footer text size and adjust spacing to match a reference image.
Solutions Provided:
Tech_Coding suggested adding CSS code to theme.liquid before the </body> tag, targeting footer headings and list content with specific font sizes (14px and 10px) for screens wider than 990px.
topnewyork recommended adding CSS to theme.css or base.css files, providing code to adjust footer block headings (14px) and menu list items (12px).
Current Status:
The original poster confirmed one solution worked and requested additional help matching the spacing shown in their reference image. The discussion appears ongoing as they seek to fully replicate their desired footer layout.
Hi, i want to change the size of the text in my footer.
From this:
To this:
I’m using the dawn theme. My url is: https://t71vm9-qa.myshopify.com/
Best regards
Hello @Anonymous
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello, @Tech_Coding
a.link.link--text.list-menu__item.list-menu__item--link {
font-size: 12px !important;
}
h2.footer-block__heading.inline-richtext {
font-size: 14px !important;
}
Thanks!
Thank you!