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:
This is not the case for me.
I have started over a new installation with minimal profile and will enable things one by one.
Will let you know how it goes.
The first problem is not a problem, things work as designed. When you install Backdrop in English, the existing content does not have a selected language.
Then, when you add other languages...
I've written before about the problems with multilingual websites:
https://forum.backdropcms.org/forum/no-way-translate-site-information?page=0%2C0#comment-8313
I'm currently...
Posted1 day 3 min ago by Antony Milenkov (amilenkov) on:
I confirm that in my practice when developing multilingual sites, the XML sitemap internationalization module also causes problems, and with me this is most evident when translating taxonomy...
Posted1 day 13 min ago by Antony Milenkov (amilenkov) 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