Remove titles from links at bottom of page?

Topic summary

A user seeks to remove page titles from footer policy links on their Shopify store while keeping the links themselves visible.

Initial Misunderstanding:

  • First solution provided CSS to hide the entire footer links list (ul.policies.list-unstyled), which removed the links entirely rather than just the titles.

Correct Solution:

  • The issue was resolved by adding CSS code to hide only the policy page titles: .shopify-policy__title { display: none; }
  • Implementation requires navigating to Online Store > Themes > Assets folder, then adding the code to the main CSS file (main.css, base.css, style.css, or theme.css).

Outcome:
The solution successfully removed the titles from individual policy pages while preserving the clickable footer links. Screenshots were provided showing before/after results.

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

Anyone know how to remove the titles of the links at the bottom of the page please?

url: https://errival.com/

1 Like

Hi @Ryan1998

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.

ul.policies.list-unstyled {
    display: none;
}

And Save.

Result:

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

That removes the links, I want to remove the title on each individual page on each link :+1:

check this one then, Same instruction.

.shopify-policy__title {
    display: none;
}

And save.

Result:

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

2 Likes

thanks