yiisoft / yii2-bootstrap4

Yii 2 Bootstrap 4 Extension
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
216 stars 106 forks source link

NavBar - collapse #175

Closed Dezyderyjczyk closed 5 years ago

Dezyderyjczyk commented 5 years ago

I installed the extension. I have js and css connected. I called these commands:

NavBar::begin([
    'brandLabel' => Yii::$app->name,
    'brandUrl' => Yii::$app->homeUrl,
    'options' => [
        'id' => 'mainNav',
        'class' => 'bg-dark navbar-dark navbar-fixed-top',
    ],
]);

echo Nav::widget([ 'options' => ['class' => 'navbar-nav navbar-right'], 'items' => [ ['label' => 'File', 'url' => ['/files'],], ... ['label' => 'Login', 'url' => ['/site/login'],], ] ]); NavBar::end();

And yet, all the time, regardless of the width, I have collapse

simialbi commented 5 years ago

You need to add the desired expand class (e.g. navbar-expand-lg): https://getbootstrap.com/docs/4.3/components/navbar/#nav

NavBar::begin([
    'brandLabel' => Yii::$app->name,
    'brandUrl' => Yii::$app->homeUrl,
    'options' => [
        'id' => 'mainNav',
        'class' => 'bg-dark navbar-dark navbar-fixed-top navbar-expand-lg'
    ]
]);