-2

Check it out here: http://bit.ly/16DJQjN

When I resize the window down to a lower resolution, everything is fine, the navigation menu turns into mobile version. But just try to get the page narrower and refresh the page, you'll see the items drop down one after another in an irregular way, just resize it once more, it's perfect again. That way, it doesn't seem alright on lower resolution devices when first opened.

To give you an idea of what it looks like, that's how it looks when the page is opened in this resolution. enter image description here

But when I just resize it in any way, it looks perfect, see:

enter image description here

I checked the JS and CSS, obviously it's not done with media-queries thing, I believe it's pure jS. How do I fix it? Can you help me?

ofer dofer
  • 631
  • 2
  • 11
  • 28

1 Answers1

0

Add this css to your style sheet this will hide menu until javascript load.

.responsive_nav ul{
    display:none;
}
Love Trivedi
  • 3,899
  • 3
  • 20
  • 26