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 @allinappli and welcome! Just for clarity, did you already run the site updates portion of the upgrade to Backdrop? (e.g. at /core/update.php)
Do you have command line access or...
Ah finally:
contextual filter as nid, no relationship
first relation: A bridge to the Content entity that is referenced via field_town
second relation: A bridge to the...
Posted1 day 2 hours ago by Robert Garrigos (robertgarrigos) on:
Thank you, it could be the way...
But now, I accidentaly made this private field public, but hide in private fieldset... not 100% sure, but it seems, I as admin can edit this Status field...
Hi 2x4b. Welcome to the Backdrop CMS forum.
If you are comfortable creating a small custom module (easy to do!), you can use a public field (not a private one), and implement...
Posted3 days 18 hours ago by Alejandro Cremaschi (argiepiano) 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