Archived topic
How to add 4 Columns in footer bar?
9 replies · Started by Ajay Nehra on January 1, 2022
I want to add 4 columns in footer bar ... not in Footer Widgets or footer, i want to add in footer bar like this -> https://ibb.co/84rXdg4
Please check image for example
Hi there,
simplest method would be to use a Block Element with GenerateBlocks Grid Block to create your own.
In the Block Element select the Footer Hook.
Is there any other way without any extra plugins, only with code?
What do you intend to add to the 4 columns ?
TO NOTE: The GenerateBlocks plugin only adds the necessary HTML and CSS it requires, nothing else, so its the same as me providing custom HTML and CSS.
I don't want to install a plugin just for one change.
What do you intend to add to the 4 columns ?
please check this image-> https://ibb.co/kyWJn3k
Add each of them as widgets to the footer bar and then let me know so i can take a look at the required CSS.
Done...Please check now
Try adding this CSS:
@media(min-width: 600px) {
footer.site-info .copyright-bar {
margin-right: 40px;
}
.footer-bar {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-bar p {
margin-bottom: 0;
}
}
You can re-order your widgets positioning to display the menu first, BUT you can't have the copyright in column 2.
Thanks David
You're welcome