On certain sites, the category selection menu can be covered up by the site header:
This usually occurs because the site header is "covering up" the categories at the top of the list.
The following snippet of CSS can be added to your site to resolve the issue.
@media screen and (max-width: 766px) {
.gspro-c-modal__content {
padding-top: 160px !important;
}
}
NOTE: You may want to tweak the pixel value (160 in the above example) to customize the look for your site design.