Hi, you can create 3-column fixed layout using the following code in Bootstrap 2.3.2:
<div class="container">
<div class="row">
<div class="span4">
<!--column one-->
</div>
<div class="span4">
<!--column two-->
</div>
<div class="span4">
<!--column three-->
</div>
</div>
</div>
To make them liquid just replace the class “container” with “container-fluid” and “row” with “row-fluid”. You can check out this page for working examples and more information on creating column layout using Bootstrap – http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-grid-system.php
Hi, you have got error because you have used the class attribute two times (class=”dropdown-toggle navmenu-link” class=”dropdown-toggle”). Just remove the – class=”dropdown-toggle” from your dropdown code and your problem will be fixed.
To know the correct use of bootstrap dropdowns and working examples you can check out this page – http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-dropdowns.php