Archived topic
Problem with spacing in footer bar
2 replies · Started by Bruce on July 2, 2021
I am creating a new web site and using a previous one as a model.
The one I created first is http://www.bikeridesfop.org
The new one is http://brucel14.sg-host.com/
It the first one, I used the copywrite section to hold a 3 column table with contact, copywrite and a link to admin login
I copied the code that I used in footer in the first one to the second one.
In the second one, it does not fill the entire footer bar.
I can't seem to figure out why.
Can you suggest anything?
Hi there,
the new site is using the Flexbox structure which will center the items by default.
Add this CSS to force them to fill the space:
.copyright-bar {
flex: 1;
}
You're welcome