Site logo

Archived topic

Modify foter

5 replies · Started by Matt on June 6, 2022

Viewing posts 1–6 of 6

How do I modify the footer like the below screenshot? I was able to add the logo and menu with footer widgets but can't figure out the bottom part.

footer

Icons are added.

Try this CSS:

.site-footer.footer-bar-active .inside-site-info {
    flex-direction: row-reverse;
    justify-content: space-between;
}

Thanks.

How do I have the icons go below or above when mobile?

Hi Matt,

Here’s a CSS you may try adding through Appearance > Customize > Additional CSS:

@media (max-width: 768px) {
    .site-footer.footer-bar-active .inside-site-info {
        flex-direction: column;
    }
}

If you want to put the icons under, use this instead:

@media (max-width: 768px) {
    .site-footer.footer-bar-active .inside-site-info {
        flex-direction: column-reverse;
    }
}

You can add spacing to the Blocks on mobile through switching the view: https://share.getcloudapp.com/rRuOn8mo

Hope this clarifies!

This archived topic is closed to new replies.