Hi Guys,
I want to remove the hoovering effect (UNDERLINE) from the filter section. Please see the screenshot for a better understanding. I would appreciate your help.
A Shopify store owner wants to remove the underline hover effect from their collection filter section.
Problem Details:
Proposed Solutions:
Multiple users suggested adding CSS to the base.css file (at the bottom):
.facets__summary span:hover { text-decoration: none; }summary.facets__summary.caption-large.focus-offset span { text-decoration: none !important; }One user also recommended removing a specific line (1710) from base.css to eliminate box shadow effects from the sort-by dropdown.
Status: Partially resolved - the text underline was removed, but the arrow hover effect persists. Additional CSS targeting may be needed for complete resolution.
Hi Guys,
I want to remove the hoovering effect (UNDERLINE) from the filter section. Please see the screenshot for a better understanding. I would appreciate your help.
.facets__summary span:hover {
text-decoration: none;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
It worked but only for the text. If I hover over the arrow then the underline still visible while hoovering.
Hello @basicbastardco ,
I would like to give you the recommendation to support you
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
Hello @basicbastardco
Add this CSS bottom of the base.css file.
.facets__summary:hover span {
text-decoration: none !important;
}
summary.facets__summary.caption-large.focus-offset span {
text-decoration: none !important;
}
summary.facets__summary.caption-large.focus-offset span {
text-decoration: none !important;
}
Apply above css for remove underline below of price and availability filter into your base.css file (online store->theme->base.css)
Remove this line on base.css file line number : 1710 to remove box shadow effect into sort by option