Andrea Fazio
asked 8 years ago

I did this test on iphone 5 and ios9
I go on the site http://demo.designwall.com/dw-minion/
Click on the "show-site-nav" and shows the div "navigation".
I click again on "show-site-nav" and the div "navigation" is hidden.

Now scrolling the page, the div "navigation" is displayed while the page is moving up or down.
When the page stops the div "navigation" is hidden.

How can I fix this bug?

1 Answers
DominicStaff
answered 8 years ago

Hi,
To resolve this issue, you can try to add the following code to the style.css file:

@media (max-width: 1199px) {
.show-nav .site-nav {
    display: block !important;
}
.site-nav { 
    display: none !important;
}
}

Hope this helps !

Powered by DW Question & Answer Pro