☆ Here is the following navigation bar of a modular page
---html
{% block header_navigation %}
{% if show_onpage_menu %}
<ul class="navigation">
{% for module in page.collection() %}
{% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
<li class="{{ current_module }}"><a href="#{{ _self.pageLinkName(module.menu) }}">{{ module.menu }}</a></li>
{% endfor %}
{% for mitem in site.menu %}
<li>
<a href="{{ mitem.url }}">
{% if mitem.icon %}<i class="fa fa-{{ mitem.icon }}"></i>{% endif %}
{{ mitem.text }}
</a>
</li>
{% endfor %}
{% if config.plugins.langswitcher.enabled %},{% include 'partials/navbar_langswitcher.html.twig' %},{% endif %}
</ul>
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}
with langswitcher inserted just before </ul>.
Everything displays very well BUT while link is correct (it's working if open in another tab) onclick is _not_ possible.
Is it a matter of CSS? And if so can I avoid it by custom.scss?
Thank in advance for your help ♪