I want to create a yahoo like logout function where in whenever I hover over the username it should display a panel containing logout and update profile function. Currently I am using this code but its not working as expected.
<ul>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><h1 id="hello"><em><?php echo $login_user;?></em></h1>
<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><i class="icon-arrow-up"></i><a href="#">Logout</a></li>
<li><i class="icon-arrow-down"></i><a href="#">Update Profile</a>
</li>
</ul>
</li>
</ul>
CSS
.dropdown-menu a {
white-space: normal;
left: 1000px;
padding-bottom: 100px;
}
.dropdown-menu > li {
position: relative;
}
.dropdown-menu > li > i {
position: absolute;
left: 0;
top: 3px;
}