I’m trying to decrease the bottom padding of the filter container in the collections page.
Need help with it.
Link - https://katharos.co.in/collections/itra
Screenshot -
I’m trying to decrease the bottom padding of the filter container in the collections page.
Need help with it.
Link - https://katharos.co.in/collections/itra
Screenshot -
Hi @ishaankatharos
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css
.filter-bar {
margin: 0;
}
.collection .filter-bar__inner.show{
padding: 0;
}