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:
Hi Kevin
I am interested assisting you developing a theme by cloning feature from existing WordPress website.
Please let me know your suitable time to discuss further...
Posted4 days 19 hours ago by Deep Vyas (deepvyas) on:
I've updated the Zulip link in both places I found it. No need to post again, unless you have something new to say. We'll pull together feedback from all the sources.
Should we post here again, what we posted over there? Or would that unnecessarily duplicate things?
The link to a Zulip thread in this initial post leads to an internal one, but there's...
This is a really good idea. I nearly always search on GitHub if I'm not sure of the name.
That said, there is still room for improvement in GitHub as many repos have a useless description...
Posted1 week 58 min ago by Martin Price | System Horizons Ltd (yorkshirepudding) 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