Archived topic
align 3 text widgets horizontally within the footer
4 replies · Started by Steen on June 15, 2019
Is it possible to align 3 text widgets horizontally within the footer ?
I would prefer NOT to have the 3 "test footer widgets" as shown on my site. But instad have the 3 text widgets, shown in the footer, aligned horizontally in the footer.
Make sense ?
ooops, forgot the url.
http://www.fgutest.multimedielinien.dk
Hi there,
try some CSS like this - it will horizontally align the 3 address boxes in the footer-bar.
@media (min-width: 769px) {
.footer-bar {
float: none !important;
display: flex;
justify-content: space-between;
}
}
FANTASTIC.........
just what i needed.
Glad to be of help