Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hey all,
I'm helping a friend edit his Shopify page but I can't seem to find where the "bullet list header" is located. I'd like to rename it just "Info" instead of "Info om Kronhjorten".
Product page:
https://replantart.dk/collections/verdenskort/products/extra-tape-192-tape-stykker
PageFly is used with this account but I don't think it's used on that page.
I've checked in Online Store > Themes > Edit default theme content, product page, Theme > Customize, but can't find any place to edit the header.
Any help would be appreciated.
Solved! Go to the solution
This is an accepted solution.
Hello @Username367468
Go to online store ---------> themes --------------> actions ------> edit code------->theme.scss.css
at the end of the file and save.
span#easytabs-slide-label-9697347666245-0::after {
content: "Info";
visibility: visible;
float: left;
}
span#easytabs-slide-label-9697347666245-0 {
visibility: hidden;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hey @Username367468
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
span#easytabs-slide-label-9697347666245-0:after {
visibility: visible;
content: "Info";
float: left;
}
span#easytabs-slide-label-9697347666245-0 {
visibility: hidden;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @Username367468
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
span#easytabs-slide-label-9697347666245-0:after {
content: "Info";
visibility: visible;
display: block;
float: left;
}
.easytabs-container .easytabs-accordion-item .easytabs-header-text {
visibility: hidden !important;
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hello @Username367468
Go to online store ---------> themes --------------> actions ------> edit code------->theme.scss.css
at the end of the file and save.
span#easytabs-slide-label-9697347666245-0::after {
content: "Info";
visibility: visible;
float: left;
}
span#easytabs-slide-label-9697347666245-0 {
visibility: hidden;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025