Left or right align footer text

Hi,

How to get our footer text (copyright) to align either full on the left side or right side? We have a full 100% website design and want the copyright text to comply with this too.

http://jspasheji.com/

This are the added footer customization CSS for the footer text, I’ve tried width: 100% and also text-align options (left and right) without no result…

/* footer */
footer#colophon {
background:rgba(255,255,255,1);
padding: 12px 0;
}

.copyright-text {
color: #000000;
}

Kind regards,

Teppo

Hi Teppo

FOoter of your site is blank, there is no any text?

Hi sorry,

Actually it still wasn’t blank, the copyright text (© JSPA Design 2009-2021) was just white - the CSS somehow had reverted to the earlier version until I managed to find out how to change the text to black.

Now the text is black and visible again… and actually thinking of it more, we would like to have the text centered on the bottom of the page, how to achieve that?
I’ve added this to the CSS now, but it’s still a bit left of the center… what to do?

.copyright-text {
color: #000000;
text-align: center;
}

Regards,

Teppo

Hi there

Ok, now its visible, you may use this code to make it full width:

footer .site-info.col-sm-6 {
width: 100%;
}