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:
If you use CSS Flexbox Layout, you can do with simple styles. In this example, if one or two side columns are excluded from the layout, the central column will occupy all the remaining width:...
Yes good point on the allowed tags , however on trying it i hit a couple of issues...
If i added the tag <!--pagebreak--> or even <!-- --> it would still remove it when...
I know for a fact that TinyMCE doesn't strip them out but in my tests you are right about CKEditor stripping at source. What you'll also need to do once the editor is not stripping out is add...
Posted13 hours 38 min ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
Thanks for checking that Alejandro. I checked the files - image does not show in files/manage, but the file title and file url have both been changed. I guess I should have renamed files before...
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