Anyone know how to remove the titles of the links at the bottom of the page please?
url: https://errival.com/
A user seeks to remove page titles from footer policy links on their Shopify store while keeping the links themselves visible.
Initial Misunderstanding:
ul.policies.list-unstyled), which removed the links entirely rather than just the titles.Correct Solution:
.shopify-policy__title { display: none; }Outcome:
The solution successfully removed the titles from individual policy pages while preserving the clickable footer links. Screenshots were provided showing before/after results.
Anyone know how to remove the titles of the links at the bottom of the page please?
url: https://errival.com/
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 ![]()
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!
thanks