Floating Responsive Navbar

http://neverup-neverin.com

Hi Guys,

I am having problems with my responsive nav bar. When its between 768px 979px it is a menu accessed by the toggle button- this is fine, but then I want this nav bar to have a value of float: none, I have done this but it doesn’t seem to be the correct code. Am i pointing to the correct class or id?

Thanks in advance for the help

The float: none is working, but is perhaps not the result you want. What do you want instead?

You should be doing this I think:


@media (max-width: 768px){
.navbar-collapse{float:none;clear:both}
.navbar-collapse ul.nav{float:none}
}

Fantastic, thanks for that, works fine.

Sorry for the delay!