Sidebar menu Issue in @media Query

Hi all,

I am working on 1 responsive site using bootstrap, I made my home page, but have some issue in side bar navigation, when I am checking it into small window like Resolution size = 640 x 480 or any other size my sidebar navigation is not showing I am confused here what to do and how to resolve this issue, here is the link of my web page:

http://jetflightz.com/responsive-test/mub_index_bk.html

please have a look into this and let me know how i can fix this issue…

Warm Regards
Shahzad

You have to decide what you want to do with the sidebar at smaller screen widths. At the moment, you have this:

@media (max-width: 979px)
.nav-collapse, .nav-collapse.collapse {
overflow: hidden;
[COLOR="#FF0000"]height: 0;[/COLOR]
}

So you are completely hiding it at smaller screen widths! That’s not a good idea.