[Resolved] How do I align links I have placed in my footer bar?

Home Forums Support [Resolved] How do I align links I have placed in my footer bar?

Home Forums Support How do I align links I have placed in my footer bar?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #816095
    Nicole

    I want these there items to show up horizontally, rather than stacked. It should look like this:

    Privacy Policy © My name Disclaimer

    Rather than:

    © My name Privacy Policy
    Disclaimer

    How do I make that happen?

    #816107
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Have you tried adding the links as a widget in the Footer Bar widget area?: Appearance > Widgets

    Let me know 🙂

    #816127
    Nicole

    I have them in my footer bar (widgets), but they’re not showing up for some reason. So I need to make them show up, then get them to align horizontally in some way.

    #816803
    Tom
    Lead Developer
    Lead Developer

    Try setting your footer bar alignment to “Center” in Customize > Layout > Footer.

    Then add this CSS:

    .footer-bar, .inside-site-info {
        display: flex;
    }
    
    .footer-bar {
        margin-left: auto;
    }
    
    .footer-bar > * {
        margin: 0 10px;
    }
    
    .copyright-bar {
        margin-right: auto;
        margin-left: 10px;
    }

    Let me know 🙂

    #817182
    Nicole

    I decided to right-align everything in the footer instead. All good. Thanks!

    #817803
    Tom
    Lead Developer
    Lead Developer

    No problem 🙂

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