MyBB Community Forums

Full Version: Adding My Own CopyRight.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
In the footer template find this:

Code:
Copyright � 2003 <strong><a href="http://www.mybboard.com">The myBulletinBoard Group</a></strong>

And replace it with this:

Code:
Copyright � 2003 <strong><a href="http://www.mybboard.com">The myBulletinBoard Group</a></strong><br />
Ran by wu-tang.kaonet.net<br />
Copyright � 2004 The CreativeMsnRemixed Group
That would be replacing the MyBB copyright which you cannot do. The MyBB copyright at a minimum has to be.

"Powered by MyBB / © 2003 MyBB Group"
I think he meant to put his own copyright under the MyBB Copyright, Chris. Wink
acctually i dont want it under it i want the mybb copyright to be on the right side and my copyright to be on the left side
Ok you can use float.

Find:
Code:
            <p>
                Powered by <a href="http://www.mybboard.com">myBulletinBoard</a> 1.00 Release Candidate 3<br />
                Copyright � 2003 <strong><a href="http://www.mybboard.com">The myBulletinBoard Group</a></strong>

            </p>

And replace it with:

Code:
            <div style="float: right;"><p>
                Powered by <a href="http://www.mybboard.com">myBulletinBoard</a> 1.00 Release Candidate 3<br />
                Copyright � 2003 <strong><a href="http://www.mybboard.com">The myBulletinBoard Group</a></strong>

            </p></div>
<div style="float: left;">
<p>
Ran by wu-tang.kaonet.net<br />
Copyright � 2004 The CreativeMsnRemixed Group
</p>
</div>

That should work.
Chris Boulton Wrote:That would be replacing the MyBB copyright which you cannot do. The MyBB copyright at a minimum has to be.

"Powered by MyBB / © 2003 MyBB Group"

Must the words "The myBulletinBoard Group" in the default copyright be bolded? Can I make them all normal text and not bolded?
Yep, thats fine. If you want them "normal" not bold..
Wait, where abouts is the footer template?
Admin CP -> Templates -> Modify -> Expand "Default Templates" > Click "Change Original" next to footer (assuming you haven't modified it before)
Pages: 1 2