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:
Thanks! The site was on PHP 7.0. With assistance from my hosting provider, I updated to PHP 7.4 and now I have access to the site again. No database re-import required.
The best you can do is test and report. If you find a contrib that doesn't work in php 8.3, create an issue in its queue so it gets fixed.
In my experience, I've found that 7.4 is safest...
Posted3 days 5 min ago by Alejandro Cremaschi (argiepiano) on:
Hi argiepiano,
Some contrib will not work in php 7.2 or lower, and some will not on PHP 8.1 or higher.
Is there a way to find out which is the optimal PHP version for a...
Posted3 days 16 min ago by Antony Milenkov (amilenkov) on:
This sounds like a combination of a buggy module and the "wrong" version of PHP. The fact that you are being redirected to the maintenance page may be an indication that your site was put on...
Posted3 days 1 hour 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