How Can We Help?

← Back

Divi – How to center the divi theme footer credits/text

Quite often the footer credits on a divi site are hidden or removed, but they can be useful. Sadly there are no built in controls in the customiser to control them and so by adding this little bit of code to your custom css for the site, you can center the text with very little effort at all. With a minor modification you can also right align the text too. 

We got this awesome little code from Divibooster in case you were wondering!

#footer-info { width: 100%; margin:0 auto; text-align: center !important; }
@media only screen and (min-width: 980px) { 
    #footer-bottom .et-social-icons { margin-bottom:-28px; } 
}