Site logo

Archived topic

Blocks are stacking in Footer Bar

3 replies · Started by kent on July 8, 2022

Viewing posts 1–4 of 4

How can I get blocks in my footer bar to display in a single row on desktops? They are stacking. https://radnordental.com/

Hi there,

try adding this CSS:

@media(min-width: 769px) {
    .footer-bar {
        display: flex;
    }
    .footer-bar aside {
        margin-left: 10px;
    }
}

Mission accomplished. Thanks!

You're welcome

This archived topic is closed to new replies.