Site logo

[Resolved] Footer widget and copyright on the same row

Home Forums Support [Resolved] Footer widget and copyright on the same row

Home Forums Support Footer widget and copyright on the same row

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1902934
    Bernhard

    Hello,
    I’d like to have the imprint text without line break on the same height of the copyright text and equal distributed in the footer. See https://www.kolosseum.it/en/

    #1903002
    Ying
    Staff
    Customer Support

    Hi Bernhard,

    1. You have 3 widgets in the footer widget area, can you go to Customizing > Layout > Footer, set Footer widgets to 1?

    2. Add this CSS:

    .site-footer.grid-container.grid-parent {
        display: flex;
    }
    
    .site-footer.grid-container.grid-parent > * {
        flex: 1;
    }
    
    .inside-footer-widgets > * {
        width: 100%;
    }
    
    footer.site-info {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    Let me know how it works 🙂

    #1903021
    Bernhard

    Perfect. Thank you 🙂

    #1903056
    Ying
    Staff
    Customer Support

    You are welcome 🙂

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