Solved

Brooklyn Theme: Add padding between sort by and filter options

adthai
Pathfinder
98 0 32

Hi, my URL is https://a-lineage-story.myshopify.com/. Password is 'beckew'. When I click a collection, my sort by option is very close to my filter options. How can I add spacing between these? Thank you!

adthai_0-1634448092626.png

 

 

Accepted Solution (1)

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

hello @adthai 

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-collection .filter-dropdown__wrapper {
    margin-bottom: 20px;
}
.template-collection .tags--collection {
    margin: 0px auto 0px;
}

 

View solution in original post

Replies 2 (2)

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

hello @adthai 

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-collection .filter-dropdown__wrapper {
    margin-bottom: 20px;
}
.template-collection .tags--collection {
    margin: 0px auto 0px;
}

 

adthai
Pathfinder
98 0 32

Thank you so much!