The most probable cause is that the content displaying over the popover has a higher z-index
. Without the precise code/style, I can offer two options :
You should try pinpointing the exact elements with a web inspector (usually F12 on your favorite browser) and check their actual z-index
.
If you find this value, you can set it lower than the popover which is z-index: 1010;
by default
Or the other approach, not as good, would be to increase the z-index
of the popover. You can do that either with the @zindexPopover
in the Less files or directly by overriding
.popover {
z-index: 1010; /* A value higher than 1010 that solves the problem */
}
If you can't find a solution, you should try reproducing the bug in something like this jsfiddle - you will probably resolve the problem while trying to get the bug.