How can I fix the scrolling filter menu on a mobile website?

Hi,

Really need some help. I have had feedback that my website via phone browser is terrible. The filter menu at the top of the page keeps scrolling down so covering any products.

How do i make this static so it doesn’t scroll down when people are scrolling.

website: www.alaynashome.com

Thank you in advance

Hi! You need to change position:sticky to position:initial for .collection-filter after @media only screen and (max-width:768px) in your theme.scss/theme.css file (Actions->Edit Code->Assets)

@media only screen and (max-width:768px){> > .collection-filter{> flex-wrap:wrap;> justify-content:space-between;> position:initial;> top:17px;> z-index:5> }

Thank you so much, very much appreciated!