Here are the steps to demonstrate this issue:
1. Visit the following page of the website:
2. Resize your browser window to mobile size and close the menu using the icon. After the animation finishes, the navigation items reappear.
I have been struggling to resolve this issue by utilizing the CSS code mentioned below from another source:
.navbar-collapse.collapsing {
-webkit-transition: height 0.01s;
-moz-transition: height 0.01s;
-ms-transition: height 0.01s;
-o-transition: height 0.01s;
transition: height 0.01s;
}
However, I am unable to find a solution to make it disappear after the animation completes.
Could someone advise on how to move it off screen post-animation?
Unfortunately, my JavaScript skills are not advanced enough to tackle this problem effectively.