previewCan someone help me figure out why my Bootstrap dropdown menu is not working correctly? I recently downloaded Bootstrap to create a custom design, and while the carousel is functioning properly, when I click on the dropdown button, the dropdown-menu jumps to the left. If you have access to the files on your computer, could you take a look at them for me? It's too much code for me to paste here, but I've included a snippet of the HTML and part of the bootstrap.min.css file. Any advice would be greatly appreciated.
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
Dropdown CSS Code...
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
Additional Dropdown CSS Code...