Why can't I see all my categories on mobile devices?

Some sites may experience conflicts based on their site theme. Resolve categories being hidden on mobile devices here.

Adam Specker avatar
Written by Adam Specker
Updated over a week ago

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.

Did this answer your question?