3
07/11/2024 7:51 上午
主题启动器
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:

我该怎么做?
谢谢
1 答案
2
07/11/2024 7:54 上午
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
