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
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
Hello, your ul is set up wrong! since you are using bootstrap try putting this menu. You just have to change the menu titles ..
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.