I'm wondering if there is a feature in core or a contrib module that will give me a veritical menu block, similar to the ones shown here, that does not reqire custom theming.
Hm, without Basis (directly or as a base theme), everything should work out of the box. If you use Basis, the issue is the following definition from core/themes/basis/css/component/footer.css:
There is a Drupal 7 contrib module that "lets the administrator see all administration pages in her preferred language" and which could be ported to Backdrop: https://www.drupal.org/project/...
Posted2 days 1 hour ago by Olaf Grabienski (Olafski) on:
@stpaultim – You're right: my approach affects also the main menu. I guess, because menus are also considered as user interface (not as content).
@findlabnet – If I didn't miss anything,...
Posted2 days 1 hour ago by Olaf Grabienski (Olafski) on:
@olaf - Sorry, but I don't think that works. I tried it and you are correct, with this change, I can switch from the English version to the German version of a page, without changing the entire...
Use case is an English speaking support person working on a multilingual site and fixing bugs with the French translation of the content.
I found one solution for your use...
Posted2 days 12 hours ago by Olaf Grabienski (Olafski) on:
Comments
The Nice Menus module gives me something close to what I want, except it definitely needs a bit of theming.
https://backdropcms.org/project/nice_menus
Hm, without Basis (directly or as a base theme), everything should work out of the box. If you use Basis, the issue is the following definition from core/themes/basis/css/component/footer.css:
.l-footer .menu > li {float: left;}In that case, theming is necessary, I guess:
.l-footer .menu > li {float: none;}Place menu blocks or content blocks into the footer and apply to the parent container
.l-footer-inner {
display: flex;
justify-content: center;
}
and
.l-footer-inner > div {
width: 25%;
}
https://www.w3schools.com/css/css3_flexbox.asp