Hi
I have an Empire theme installed. I am unable to see the ‘In stock’ or ‘Out of stock’ text in filters. It’s hidden but the boxes are visible but differ from other filter boxes.
The mobile view also has the same issue.
Add This css In your theme.css File
.collection-filters__filter-group:first-child ul.collection-filters__filter li.collection-filters__filter-list-item:first-child a.collection-filters__filter-link:before {
content: "In Stock ";
padding-right: 15px;
}
.collection-filters__filter-group:first-child ul.collection-filters__filter li.collection-filters__filter-list-item:last-child a.collection-filters__filter-link:before {
content: "Out of stock";
padding-right: 15px;
}
.collection-filters__filter-group:first-child ul.collection-filters__filter li.collection-filters__filter-list-item a.collection-filters__filter-link {
width: 100%;
justify-content: space-between;
}