Problems with vertical menu bootstrap

0

Good evening

My vertical in the navigation bar does not appear correctly when I adjust the page to a smaller device size. What happens?

Thank you in advance

Follow the link

Link

    
asked by anonymous 21.03.2017 / 02:01

2 answers

0

Hello, your ul is set up wrong! since you are using bootstrap try putting this menu. You just have to change the menu titles ..

link

    
21.03.2017 / 12:53
0

Your problem is in the css in this part:

li{
  display: inline-block;
  height: 10px;
  margin: 1px;
  border: 1px solid @carousel-indicators-border-color;
  border-radius: 10px;
  cursor: pointer;
}

You are applying a style that was meant to be only for the carousel on all li, including those on the menu. This display: inline-block; property causes them to behave in a "strange" way.

    
21.03.2017 / 13:09