Center-Justification of Copyright Footer

Hi there! I’m trying to adjust my Copyright Footer to be center-justified, but although it is now “centered” it’s stuck on the right side of my page. I’m new to code and am sure it’s something simple, but would love some help! Right now I’m using: <div align=“center”>

You can see what I’m talking about on my site at: OChungPhotography.com

Thanks so much!

Hi @cochung,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

.copyright.col-md-6 {
    float: none;
    margin: 10px auto 0;
}

Best Regards,
Movin