[Support request] Columns in Site Content Footer Widget

Home Forums Support [Support request] Columns in Site Content Footer Widget

Home Forums Support Columns in Site Content Footer Widget

  • This topic has 3 replies, 2 voices, and was last updated 6 years ago by Tom.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #551055
    Robert

    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.

    #551275
    Tom
    Lead Developer
    Lead Developer

    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 ๐Ÿ™‚

    #553502
    Robert

    This worked great! Thanks so much, Tom!

    #553849
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.