Cmenu Dropdown With Bootstrap 2.3.2

im trying to make a dropdown in my nav and im using the CMenu widget from yii, im adding link options, item options but no clue, i also tried to make it without the widget (copying the example on the official page bootstrap) but its also not working, maybe its something with javascript, i still dont know how to use javascript well, im learning it, could use any help?

main layout:


<?php /* @var $this Controller */ ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <meta name="language" content="en" />


    <!-- blueprint CSS framework -->

    <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/dist/css/bootstrap.css">

    <!--[if lt IE 8]>

    <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/ie.css" media="screen, projection" />

    <![endif]-->


    <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/main.css" />

    <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/form.css" />


    <title><?php echo CHtml::encode($this->pageTitle); ?></title>

</head>


<body>


<div class="container" id="page">


    <div id="header">

        <div id="logo"><?php echo CHtml::encode(Yii::app()->name); ?></div>

    </div><!-- header -->


    <div id="mainmenu">

        <?php

        $this->widget('zii.widgets.CMenu',array(

            'htmlOptions'=>array('class'=>'nav nav-pills'),

            'submenuHtmlOptions'=>array('class'=>'dropdown-menu'),

            'encodeLabel'=>false,

            'items'=>array(

                array('label'=>'Home', 'url'=>array('/site/index')),

                array('label'=>'About', 'url'=>array('/site/page', 'view'=>'about')),

                array('label'=>'Contact', 'url'=>array('/site/contact')),

                array('label'=>'Tools <b class="caret"></b>', 'url'=>array('#'), 'itemOptions'=>array('class'=>'dropdown'), 'linkOptions'=>array('class'=>'dropdown-toggle', 'data-toggle'=>'dropdown'), 'items'=>array(

                    array('label'=>'tool #1', 'url'=>array('/Tools/index'))

                )),

            ),

        ));

        ?>

    </div><!-- mainmenu -->

    <?php if(isset($this->breadcrumbs)):?>

        <?php $this->widget('zii.widgets.CBreadcrumbs', array(

            'links'=>$this->breadcrumbs,

        )); ?><!-- breadcrumbs -->

    <?php endif?>


    <?php echo $content; ?>


    <div class="clear"></div>


    <div id="footer">

        Copyright &copy; <?php echo date('Y'); ?> by My Company.<br/>

        All Rights Reserved.<br/>

        <?php echo Yii::powered(); ?>

    </div><!-- footer -->


</div><!-- page -->


<!-- Javascript -->

<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/css/dist/js/bootstrap.js"></script>


</body>

</html>

and the output html:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <meta name="language" content="en" />


    <!-- blueprint CSS framework -->

    <link rel="stylesheet" type="text/css" href="/misc/css/dist/css/bootstrap.css">

    <!--[if lt IE 8]>

    <link rel="stylesheet" type="text/css" href="/misc/css/ie.css" media="screen, projection" />

    <![endif]-->


    <link rel="stylesheet" type="text/css" href="/misc/css/main.css" />

    <link rel="stylesheet" type="text/css" href="/misc/css/form.css" />


    <title>Miscellaneous</title>

</head>


<body>


<div class="container" id="page">


    <div id="header">

        <div id="logo">Miscellaneous</div>

    </div><!-- header -->


    <div id="mainmenu">

        <ul class="nav nav-pills" id="yw0">

<li class="active"><a href="/misc/site/index.ths">Home</a></li>

<li><a href="/misc/site/page.ths?view=about">About</a></li>

<li><a href="/misc/site/contact.ths">Contact</a></li>

<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="/misc/site/#.ths">Tools <b class="caret"></b></a>

<ul class="dropdown-menu">

<li><a href="/misc/Tools/index.ths">tool #1</a></li>

</ul>

</li>

</ul>   </div><!-- mainmenu -->

            <!-- breadcrumbs -->


    <div id="content">


<h1>Welcome to <i>Miscellaneous</i></h1>


<p>Congratulations! You have successfully created your Yii application.</p>


<p>You may change the content of this page by modifying the following two files:</p>

<ul>

    <li>View file: <code>C:\Users\Oscar\Dropbox\Programacion\Servidor\misc\protected\views\site\index.php</code></li>

    <li>Layout file: <code>C:\Users\Oscar\Dropbox\Programacion\Servidor\misc\protected\views\layouts\main.php</code></li>

</ul>


<p>For more details on how to further develop this application, please read

the <a href="http://www.yiiframework.com/doc/">documentation</a>.

Feel free to ask in the <a href="http://www.yiiframework.com/forum/">forum</a>,

should you have any questions.</p>

</div><!-- content -->


    <div class="clear"></div>


    <div id="footer">

        Copyright &copy; 2014 by My Company.<br/>

        All Rights Reserved.<br/>

        Powered by <a href="http://www.yiiframework.com/" rel="external">Yii Framework</a>. </div><!-- footer -->


</div><!-- page -->


<!-- Javascript -->

<script type="text/javascript" src="/misc/css/dist/js/bootstrap.js"></script>


</body>

</html>

i only get the first item "tools" but i dont get the dropdown, i dont even see the submenu, anything im missing?

markup looks good to me


<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="/misc/site/#.ths">Tools <b class="caret"></b></a>

<ul class="dropdown-menu">

<li><a href="/misc/Tools/index.ths">tool #1</a></li>

</ul>

is your javascript and css being loaded check your browser console in case you getting any error

i checked on the inspector and everything, i only get errors on the console from the css, but i dont know if that could be a problem


Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3577

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3578

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3583

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3584

16:08:39.552 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:3593

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3602

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3622

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3623

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3627

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3631

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3653

16:08:39.552 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:3685

16:08:39.552 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:3686

16:08:39.552 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:3695

16:08:39.552 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:3696

16:08:39.552 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:3705

16:08:39.552 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:3706

16:08:39.552 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:3715

16:08:39.552 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:3716

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3732

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3734

16:08:39.552 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:3737

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3742

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3744

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3749

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3750

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3754

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3756

16:08:39.552 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:3763

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3831

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:3834

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3842

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3853

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3859

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3865

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3871

16:08:39.552 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:3882

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4018

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4021

16:08:39.552 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4029

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4073

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4098

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4124

16:08:39.553 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:4133

16:08:39.553 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:4134

16:08:39.553 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:4142

16:08:39.553 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:4143

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4162

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4168

16:08:39.553 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4221

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4230

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4275

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4312

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4325

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4337

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4350

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4365

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4366

16:08:39.553 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4377

16:08:39.553 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4378

16:08:39.553 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4379

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4384

16:08:39.553 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4386

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4387

16:08:39.553 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4389

16:08:39.553 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4466

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4526

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4537

16:08:39.553 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4564

16:08:39.553 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4581

16:08:39.553 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4591

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4638

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4651

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4653

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4654

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4655

16:08:39.554 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4660

16:08:39.554 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4661

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4663

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4675

16:08:39.554 Expected end of value but found '\9 '.  Error in parsing value for 'background-color'.  Declaration dropped. bootstrap.css:4680

16:08:39.554 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4689

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4692

16:08:39.554 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4788

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4795

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4796

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4797

16:08:39.554 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4801

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4882

16:08:39.554 Unknown pseudo-class or pseudo-element '-ms-input-placeholder'.  Ruleset ignored due to bad selector. bootstrap.css:4894

16:08:39.554 Unknown pseudo-class or pseudo-element '-webkit-input-placeholder'.  Ruleset ignored due to bad selector. bootstrap.css:4898

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4911

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4919

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4921

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4922

16:08:39.554 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:4923

16:08:39.554 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4928

16:08:39.554 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:4929

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4940

16:08:39.554 Expected end of value but found '\9 '.  Error in parsing value for 'background-color'.  Declaration dropped. bootstrap.css:4945

16:08:39.554 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4954

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4960

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4962

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4980

16:08:39.554 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:4984

16:08:39.554 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:4986

16:08:39.554 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:4988

16:08:39.555 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:5036

16:08:39.555 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:5037

16:08:39.555 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:5046

16:08:39.555 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:5047

16:08:39.555 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:5070

16:08:39.555 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:5071

16:08:39.555 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:5080

16:08:39.555 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:5081

16:08:39.555 Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. bootstrap.css:5092

16:08:39.555 Unknown property '-moz-border-radius-topleft'.  Declaration dropped. bootstrap.css:5093

16:08:39.555 Unknown property '-moz-border-radius-topright'.  Declaration dropped. bootstrap.css:5104

16:08:39.555 Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. bootstrap.css:5105

16:08:39.555 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:5124

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5149

16:08:39.555 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5195

16:08:39.555 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:5208

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5210

16:08:39.555 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5214

16:08:39.555 Unknown property '-moz-background-clip'.  Declaration dropped. bootstrap.css:5217

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5265

16:08:39.555 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:5267

16:08:39.555 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5269

16:08:39.555 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5304

16:08:39.555 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5310

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5341

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5399

16:08:39.555 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5402

16:08:39.555 Unknown property '-moz-background-clip'.  Declaration dropped. bootstrap.css:5405

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5434

16:08:39.555 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:5532

16:08:39.555 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5562

16:08:39.556 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5565

16:08:39.556 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5577

16:08:39.556 Expected declaration but found '*'.  Skipped to next declaration. bootstrap.css:5596

16:08:39.556 Unknown property 'zoom'.  Declaration dropped. bootstrap.css:5597

16:08:39.556 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5646

16:08:39.556 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5654

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5784

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5785

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5786

16:08:39.556 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5790

16:08:39.556 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5792

16:08:39.556 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5794

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5808

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5809

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5810

16:08:39.556 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5813

16:08:39.556 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5815

16:08:39.556 Unknown property 'box-sizing'.  Declaration dropped. bootstrap.css:5819

16:08:39.556 Unknown property '-moz-box-shadow'.  Declaration dropped. bootstrap.css:5828

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5834

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5835

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5837

16:08:39.556 Unknown property '-moz-background-size'.  Declaration dropped. bootstrap.css:5840

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5857

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5858

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5859

16:08:39.556 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5862

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5868

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5869

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5871

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5879

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5880

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5881

16:08:39.556 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5884

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5890

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5891

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5893

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5901

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5902

16:08:39.556 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5903

16:08:39.556 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5906

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5912

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5913

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5915

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5923

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5924

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5925

16:08:39.557 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:5928

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5934

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5935

16:08:39.557 Error in parsing value for 'background-image'.  Declaration dropped. bootstrap.css:5937

16:08:39.557 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:5949

16:08:39.557 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:6051

16:08:39.557 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:6054

16:08:39.557 Expected 'none' or URL but found 'alpha('.  Error in parsing value for 'filter'.  Declaration dropped. bootstrap.css:6067

16:08:39.557 Unknown property '-moz-border-radius'.  Declaration dropped. bootstrap.css:6128

16:08:39.559 Error in parsing value for 'background'.  Declaration dropped. main.css:54

16:08:39.559 Error in parsing value for 'background'.  Declaration dropped. main.css:55

16:08:39.559 Error in parsing value for 'background'.  Declaration dropped. main.css:56

16:08:39.559 Error in parsing value for 'background'.  Declaration dropped. main.css:57

16:08:39.559 Expected 'none' or URL but found 'progid'.  Error in parsing value for 'filter'.  Declaration dropped. main.css:59

16:08:39.561 Unknown property '-moz-border-radius'.  Declaration dropped. form.css:53

16:08:39.633 TypeError: $ is not a function bootstrap.js:29

there is your problem right there


16:08:39.633 TypeError: $ is not a function bootstrap.js:29

how do i fix it?. i dont know javascript enough to fix that problem. and i even compared the library from the official page and they are the same

i found the problem, it needed jquery library, but still no clue why its not giving me the dropdown, atleast i fixed that problem, ill try to fix this one and if i cant ill post it

found the problem, the url did not have to be an array, just be ‘#’

its likely your javascript check your console again paste it here