Hello, I have a Collections tab that expands and allows customers to filter their search. I don’t want this menu to expand. I want the filter options to always be open and expanded. Any insight on how I can achieve this?
1 Like
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.css ->paste below code at the bottom of the file.
@media screen and (min-width: 1280px) {
.collection__filters--left .collection__filter-container {
overflow: visible;
opacity: 1 !important;
height: auto !important;
min-height: 310px;
}
}

