I found the issue for the missing “Category” dropdown for mobile using the Air Theme.
In reference to posts…
The code in your repo Common.scss states…
.mobile-view {
.cm-header-links {
display: none;
}
.list-controls .nav-pills .drop li:first-of-type {
display: none;
}
}
I updated the code to
.mobile-view {
.cm-header-links {
display: none;
}
.list-controls .nav-pills .drop li:first-of-type {
display: block;
}
}
And now the Categories dropdown does not disappear after choosing another dropdown option. ![]()