I am trying to add a dropdown setting menu to my comments section in a project that I\'ve been working on.
The dropdown menu seems to cut itself off and I am not sure
I had the same problem. After adding this lines, my dropdown worked just as I expected:
@media (max-width: 767px) { .table-responsive .dropdown-menu { position: static !important; } } @media (min-width: 768px) { .table-responsive { overflow: visible; } }
I found the solution here