Coder Maverick
Coder Maverick
The issue is with Nav, but it only presents when Nav is used inside a NavBar, as per yii\bootstrap4\NavBar documentation: `NavBar::begin();` `echo Nav::widget([` ` 'items' => [...],` ` 'options' =>...
@simialbi Class 'nav' should NOT be added when creating a navigation menu inside a NavBar: https://getbootstrap.com/docs/4.6/components/navbar/#nav Note that the 'ul' is of class 'navbar-nav' and NOT 'navbar-nav nav' as rendered...
@simialbi `Nav::widget(['class' => ['widget' => '']]);` Did not work for me. Class 'nav' is still being added to the 'ul'.