Center / Right align copyright

thunderup

Active member
Licensed customer
What is the CSS code I want to enter in the EXTRA.css (or elsewhere) to align the copyright to center or right ?

Thanks
 
Code:
#copyright
{
	float: right;
}

You may also want to move the legal stuff to make room for the copyright:

Code:
#legal
{
	float: left;
}
 
Code:
#copyright
{
margin-top: 20px;
color: #ffcc99;
font-style: italic;
}
#legal
{
margin-top: 20px;
color: #ffcc99;
font-style: italic;
}

The Xenforo now shows up better against a dark background - I do want to credit XF and have it show clearly.
But the legal terms text on the other side is still a murky blue. I don't greatly mind it being obscure but design perfection says it should balance the XF credit in how it looks.

I'd also like to put an extra line of text down there to credit all the people who help me on here.
Would make a nice little add-on!
 
Back
Top Bottom