[Resolved] How to make a 100% width footer widget with Flexbox?

Home Forums Support [Resolved] How to make a 100% width footer widget with Flexbox?

Home Forums Support How to make a 100% width footer widget with Flexbox?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1607309
    Arp

    Do I have to use Elements instead?

    #1607312
    Leo
    Staff
    Customer Support

    Hi there,

    Any chance you can link us to the site in question?

    You can use the private information field.

    Let me know 🙂

    #1608180
    Arp

    Sure.

    #1608241
    David
    Staff
    Customer Support

    Hi there,

    try adding this to your current CSS:

    /* Allow footer widgets to wrap */
    .inside-footer-widgets {
        flex-wrap: wrap;
    }
    /* Add bottom margin to top full width widget */
    .footer-widgets .footer-widget-1 {
        margin-bottom: 40px;
    }
    /* Set all other widgets to 33% to fill row */
    .inside-footer-widgets div:not(:first-child) {
        flex-basis: 33%;
    }
    #1608253
    Arp

    That worked – much appreciated!

    #1608255
    David
    Staff
    Customer Support

    You’re welcome

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