Bootstrap Menu Problem

4

I made a customizing menu using Bootstrap, however, I'm having a problem when I decrease the width to

asked by anonymous 26.10.2015 / 16:05

1 answer

4

If you want to leave the default bootstrap settings for resolutions less than and equal to 767px you can use media query to use your custom css only at higher resolutions, eg:

@media screen and (min-width: 767px) {
  // se o seu dispositovo for maior que 768px coloque seu css
}

See running on Jsfiddle

Another detail, there is a lot of inline css in your navbar, remove it and add it in classes, so you can control its use by resolution.

    
26.10.2015 / 16:33