hi i want to remove the underline on the collapsible rows please see attached.
URL: golazocasesuk.myshopify.com
theme: trade
A Shopify store owner seeks to remove underlines appearing on collapsible row elements and search bar text.
Initial Issue:
Solutions Provided:
Two support teams offered CSS-based fixes:
For collapsible rows: Add custom CSS targeting .collapsible-content summary.accordion__title:hover with text-decoration: none !important; to either the theme.liquid file (above </head> tag) or base.css/theme.css files
For search bar text: Additional CSS code provided targeting .predictive-search__list-item:hover .predictive-search__item-heading to remove underlines on hover
Implementation Notes:
</head> tag initiallyStatus: A community member noted they couldn’t see underlined items on the website, suggesting the issue may have been resolved.
hi i want to remove the underline on the collapsible rows please see attached.
URL: golazocasesuk.myshopify.com
theme: trade
Hi @golazocases ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
.collapsible-content summary:hover .accordion__title {
text-decoration: none !important;
}
there is no tag on mine
Can you add more this code @golazocases
.predictive-search__list-item:hover .predictive-search__item-heading {
text-decoration: none !important;
}
I could not see any underlined collapsible item on your website, hope you have solved the problem. ![]()