Problems with vertical bootstrap menu

Asked

Viewed 43 times

0

Good night

My vertical on the navigation bar does not appear correctly when I set the page to a smaller device size. What Happens?

Thanking you in advance

Following link

Link

2 answers

0

  • Thank you so much for the tip. I’m taking the first steps with bootstrap

0

your problem is in css in that 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 supposed to be only for Carousel in all the li, including the menu. This property display: inline-block; causes them to behave in such a "strange way".

  • Thank you very much, my friend. I’m still taking the first steps with bootstrap.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.