Since that is a commercial product, we ask that you please go to their official support channel, so you can get support from the people who know it best: https://livecanvas.com/contact-us/
Forum volunteers are not given access to commercial products, so they would not know why it is not working properly. Other community members who may have faced your issue might be able to help you but your best bet is your product’s developer. Keep in mind we encourage you to use the official support venues, as it allows the developers to be aware of issues with their code and gives back to the community in a more robust way.
You need “flex_wrap” to prevent items from being cut off:
#main-menu {
flex-wrap: wrap;
}
To scroll the menu on mobiles, the entire navbar cannot be fixed position.
@media (max-width: 992px) {
.fixed-top {
position: relative;
}
}
Add the above CSS to the additional CSS section of the customizer.
@bcworkz Thank you! It worked! Thank you so much!