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.

I only need a single level of menu items. 

Comments

Olafski's picture

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;

}