Hi all!
I would like to display the offcanvas menu for alle devices even for the desktop view. Where do I have to change the code or media query. I do not find the corresponding file for that.
The solution I am searching for is that I will deactivate the main menu module and therefore I want to set the offcanvas menu visible for the desktop view.
The code below shows the section I am talking about. The offcanvas module is displayed with the class uk-navbar-toggle and the uk-visibile-small! The only thing I had to change in my opionion is to delete the visisble-small class, but where do I have to do that?
Code:
<nav class="tm-navbar uk-navbar">
<div class="uk-container uk-container-center no-space">
<div class="logo uk-hidden-small uk-text-center">
<a class="tm-logo" href="http://www.pierer.cc/stessi">
<h2 class="demo-logo">Steszgal IT</h2></a>
</div>
<ul class="uk-navbar-nav uk-hidden-small"><li class="uk-active"><a href="/stessi/index.php">Home</a></li><li><a href="#">Technologieberatung</a></li><li><a href="#">Projektunterstützung</a></li><li><a href="#">Beteiligungsmanagment</a></li><li><a href="#">Join our Team!</a></li><li><a href="#">Kontakt</a></li></ul>
<a href="#offcanvas" class="uk-navbar-toggle uk-visible-small" data-uk-offcanvas=""></a>
<div class="uk-navbar-content uk-navbar-center uk-visible-small">
<a class="tm-logo-small" href="http://www.pierer.cc/stessi">
<h2 class="demo-logo">Steszgal IT</h2></a>
</div>
</div>
</nav>
Please Log in or Create an account to join the conversation.