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
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
0
Hello, your ul is set wrong! already using bootstrap tries to put this menu. Just have to change the titles of menus..
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 bootstrap
You are not signed in. Login or sign up in order to post.
Thank you so much for the tip. I’m taking the first steps with bootstrap
– Dan