Site logo

Archived topic

Columns in Site Content Footer Widget

3 replies · Started by Robert on April 15, 2018

Viewing posts 1–4 of 4

Hi, I'm working with Word Press Premium on a site that has 50+ pages. I'd like to have the pages list in the footer, so I used the "Site Content" widget. However all of the pages are listing in one loooong column. Is there a way to have the site content list flow into several columns with the footer space?

Thank you.

Hi there,

You could try some CSS like this:

.footer-widgets .widget_pages > ul {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    -o-column-count: 4;
    column-count: 4; 
}

.footer-widgets .widget_pages > ul ul {
    margin-left: 0;
}

Let me know :)

This worked great! Thanks so much, Tom!

You're welcome :)

This archived topic is closed to new replies.