Hi everyone! can we add a scrollbar to the verticle filter added using search and discovery app? i am using shopify dawn theme. here is the link to the preview of my store.
You can add a scrollbar to the vertical filter in the Search & Discovery app by modifying the CSS of the filter container in your Shopify Dawn theme. Try adding the following CSS to your theme’s base.css or component-facets.css file:
Steps to Apply:
Find the filter container’s class using Inspect Element (DevTools). Replace .your-filter-container-selector with the actual class name.
Add the CSS to your theme’s base.css or component-facets.css file.
Hello there @momsabhiruchi You can try out the following steps and let me know the results
Log in to your website’s backend or content management system.
Locate the CSS file that controls the styles for your side filter. This will depend on the platform you’re using and the specific theme or template you’re using.
Add the following CSS code to the file:
.your-side-filter {
max-height: 200px; /* adjust this value to your liking */
overflow-y: auto;
}