Language Switch blok and AutoNav

Permalink 1 user found helpful
Hi, does anyone know if it's possible to add the Language Switch block to the Autonav menu... and how?

Working on Concrete 5.8.3. Hope to hear from you.

Thanks,
Luca

ZillionProductions
 
c5dragon replied on at Permalink Reply
c5dragon
Global area with (2 blocks) Autonav + Language Switch is always an option.
ZillionProductions replied on at Permalink Reply
ZillionProductions
Thanks for the suggestion, but I would like them to be side by side instead of on top of each other... Any thoughts?
c5dragon replied on at Permalink Reply
c5dragon
You can do it with css.

Position the language switch absolute in a relative positioned container or use floats / flexbox / css grid.

<div class="navigation-wrapper">
    <div class="autonav">autonav</div>
    <div class="language_switch">language switch</div>
</div>
ZillionProductions replied on at Permalink Reply
ZillionProductions
Thanks! I'll give it a try ;)