Archived topic
Footer widget and copyright on the same row
3 replies · Started by Bernhard on August 20, 2021
Viewing posts 1–4 of 4
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/
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 :)
Perfect. Thank you :)
You are welcome :)
This archived topic is closed to new replies.