Topic summary
A user seeks to make footer links bold in their Shopify theme.
Solutions Provided:
Two community members offered CSS-based approaches:
-
theme.liquid method: Add custom CSS styling before the
</body>tag in theme.liquid, targeting footer links withfont-weight: bold !important -
CSS file method: Navigate to Online Store > Themes > Assets folder, locate the main CSS file (main.css, base.css, style.css, or theme.css), and add
.footer-block__details-content { font-weight: 700; }at the bottom
Outcome:
The original poster confirmed that one of the solutions worked successfully. Both approaches include screenshots demonstrating the implementation steps and expected results.
Hello @Lumify
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.
Hi @Lumify
check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.footer-block__details-content {
font-weight: 700;
}
And Save.
Result:
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!
Hello Tech_Coding,
Many thanks. It did work. ![]()


