Sticky Header Covering A Few Of My Pages In Mobile View- Debut theme

My sticky header covers the names of some collections only in mobile view.
My website: yourfoodguard.com

Can somebody please help me with this?

Hi @KKW ,

It seems that the padding on your page container does not have the right top padding.

I suggest adding this code to the bottom of your theme.css file in the theme code editor.

@media only screen and (max-width: 750px) {
  #PageContainer {
    padding-top: 133px;
}
}

worked perfectly! thank you so much!