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
Working on Concrete 5.8.3. Hope to hear from you.
Thanks,
Luca
Global area with (2 blocks) Autonav + Language Switch is always an option.
Thanks for the suggestion, but I would like them to be side by side instead of on top of each other... Any thoughts?
You can do it with css.
Position the language switch absolute in a relative positioned container or use floats / flexbox / css grid.
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>
Thanks! I'll give it a try ;)