How can I decrease white space in the Impulse theme?

Hi I’m trying to reduce the white space between the filter button and the collection grid so the button is on top of the top border

My site is https://luxurymrkt.com/collections/accessories-1

please see pic

@Luxurymrkt theme.css line 7434 > add height: 40px; to .collection-filter and set the top: 53px; instead of 63px:

@media only screen and (max-width: 768px)
.collection-filter {
flex-wrap: wrap;
justify-content: space-between;
position: sticky;
top: 53px !important;
z-index: 5;
height: 40px;
}

1 Like

Worked perfect

Any update for this?