WordPress footer menu floating with height of footer

You do not clearly define how you want the menu to work …

1 2 3
4 5 6

or

1 3 5
2 4 6

Maybe the CSS multi-column layout is what you are looking for (for moderns browsers only)

.columns{
    column-count:4;
    column-gap:2em;
}

More complete demo at http://jsfiddle.net/gaby/Y88YZ/

Leave a Comment