How to change Divi footer text's alignment?

  

3
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 to align Divi footer text on center

 

How can I do it?

Thanks

1 Answer
2

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

Share: