How can I keep the Collections tab always expanded?

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?

https://shop.eluwastudio.com/collections/all

1 Like

@JhordanMSUITE

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. 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;
}
}