Im having problem with displaying bootstrap .dropwdown class. It worked from the beginning but stopped showing after a while. Im using a fixed container as "mainpage" throughout the website. Looks like this now: http://imgur.com/NIfje It looks like this when the button is clicked as you can see on the small arrow showing up.
I've confirmed that the dropdown is working and there is nothing wrong with the .js file. Here is the body and header im using:
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<span class="brand">doost</span>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="<?php echo $logout; ?>">Logout</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">browse <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo $random; ?>">random</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
I've tried resetting/removing everything that could have caused this problem without being able to fix it. That includes replacing bootstrap.js/bootstrap.css with default ones. The main page consists of a fixed container that begins in the header and ends in the footer and as I said included in every page. I have several nested div tags inside this container making up the website.
I've also tried increasing z-index for .dropdown in bootstrap.css but nothing happened.
Im using default bootstrap.js/bootstrap.css including one homecook.js/homecook.css
Tell me if I need to provide anything else for you to be able to help me. Thank you.
overflowattributes around the code. jsfiddle.net/5xm37/4. And, please, use left colum to add resources to filddles, do not paste them. – madhead Sep 30 '12 at 0:20