3
07/11/2024 7:51 am
Topic starter
I have Divi site and I want the footer (it's text and links) to be aligned on the middle;
Now the information is centered left;
Please see the pic below:
How can I do it?
Thanks
1 Answer
2
07/11/2024 7:54 am
In your Divi's child theme in style.css add these lines of code:
/*Footer info center align*/ #footer-info { float: none; padding-bottom: 10px; text-align: center; }
Cheers