Popover wird in Twitter Bootstrap unter der Navigationsleiste versteckt

In meiner Navigationsleiste befindet sich eine Hilfeschaltfläche mit einer Popover-Funktion.

<div class="navbar navbar-fixed-top">
    <div class="navbar-inner">
        <div class="container">
           <div class="nav pull-right">
               <div class="cb_inline_block">               
                   <a class="btn btn-small cb_inline_block icon timezone_help" data-content="{% trans 'hahaha' %}" rel="popover" href="#" data-original-title="{% trans 'Time Zone' %}"><i class="icon-question-sign icon-large"></i></a>

Javascript:

$(document).ready(function () { $('.timezone_help').click(show_timezone_help); };

function show_timezone_help(event){
    event.preventDefault();
    $('.timezone_help').popover('show');
}

Aber wenn ich darauf klicke, ist das Popover hinter der Navigationsleiste versteckt.

Muss ich den Z-Index wirklich manuell einstellen? Das wäre schmerzhaft. Sicher, ich muss etwas falsch machen. Vielen Dank.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage