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:
I tried using Rules to find the user by email and update a taxonomy field in their profile, but I couldn't get it to work.
This should work with Rules. Can you post your rule...
Posted21 hours 14 min ago by Alejandro Cremaschi (argiepiano) on:
Thanks, I also use Better Exposed Filters and find it extremely useful.
I would like to note as a help for other users in the forum who might be interested in the problem that Use AJAX:...
Posted1 day 8 hours ago by Antony Milenkov (amilenkov) on:
Hi John
An interesting idea. I can see many possible uses for such a function. However...
It is unlike to have wide enough use to qualify as something to go into core,...
Posted3 days 6 hours 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