既に持っているナビゲーション バーから「ホバー時のドロップダウン」ナビゲーション ボックスを作成しようとしています。
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a>
</li>
<li><a href="<?php echo $this->url('zfcuser') ?>"><?php echo $this->translate('My Account') ?></a>
<ul>
<li><a
href="<?php echo $this->url('zfcuser/change-password') ?>"><?php echo $this->translate('Change Password') ?></a>
<li><a href="<?php echo $this->url('zfcuser/change-email') ?>"><?php echo $this->translate('Change Email') ?></a>
</ul></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
そのための CSS はどのようになりますか? 頭の中に何かがあるのですが、実際にはうまくいきません。