Hallo Webstar,
ich bin bei der Navigation angelangt... ;-)
Ich möchte eine Navigation wie hier: http://getbootstrap.com/examples/justified-nav/
d.h. der Quelltext sollte i.E. so aussehen
PHP-Code:
<nav class="navbar mod_bootstrap_navbar navbar-default" role="navigation">
<div class="container">
<div id="navbar-responsive-64" class="collapse navbar-collapse">
<nav class="mod_navigation block">
<a class="sr-only" href="#skipNavigation65">Navigation überspringen</a>
<ul class="level_1 nav nav-justified">
...
<a id="skipNavigation65" class="sr-only"> </a>
</nav>
</div>
</div>
</nav>
1. Versuch:
In dem FE-Modul für die Navigation habe ich bei "Bootstrap Navigations-Klassen" folgendes eingetragen: "nav nav-justified"
=> ist aber nix passiert...
2. Versuch:
ich habe versucht, das Template umzuschreiben - wie folgt:
Datei "nav_bootstrap_dropdown.html5"
PHP-Code:
<?php $helper = \Netzmacht\Bootstrap\Components\Navigation\Helper::create($this, 'dropdown'); ?>
<?php if($helper->isChildrenList()): ?>
<?php
$this->attributes->addClass('nav-justified');
$this->attributes->removeClass('navbar-nav');
?>
<ul <?php echo $helper->getListAttributes(); ?>>
<?php endif; ?>
...
kommt aber eine Fehlermeldung, dass Methode addClass nicht zur Verfügung steht..
... wie bekomme ich das hin?
Dank & Gruss