Archived topic
Secondary Menu issue on mobile
4 replies · Started by Rohith on June 25, 2021
There’s some issue with secondary navigation in mobile. The first four items are not displaying in mobile view. Can you please help in fixing that?
No reply even after more than 24 hours
Hi there,
sorry your last topic slipped past our system - it happens occasionally especially when a single user is generating a lot of back to back topics. Also as much as we like helping every user with their custom development we are not an open house for every design coding request you have.
But the issue: You have this Custom CSS for the scrolling navigation:
#secondary-navigation .main-nav > ul {
flex-wrap: nowrap;
scroll-snap-type: mandatory;
}
Try changing it to this:
#secondary-navigation .main-nav > ul {
flex-wrap: nowrap;
scroll-snap-type: mandatory;
justify-content: flex-start;
}
Worked, Thanks!
Glad to hear that