See the "bottom" paragraph in the templates file "global.tpl.php":
<p id="bottom">
{usebb_copyright}
</p>
and in "styles.css" the corresponding styles:
#bottom {
clear: both;
float: left;
width: 705px;
padding: 3px 9px 3px 9px;
background-image: url(gfx/topmenu_bg.png);
background-repeat: repeat-x;
background-color: #E8E8E8;
border: 1px solid #666;
font-style: normal;
text-align: right;
color: #333;
}
#bottom a:link, #bottom a:hover, #bottom a:active, #bottom a:visited {
text-decoration: none;
}Adding text left-aligned is not easily possible while keeping the copyright statement right-aligned.
You can simply add Mates Junction Free Community Services before the copyright statement (and change "Powered" to "powered"):
<p id="bottom">
<a href="url here">Mates Junction</a> Free Community Services
{usebb_copyright}
</p>
An alternative solution could be to make a second box and add your link there:
<p id="bottom">
<a href="url here">Mates Junction</a> Free Community Services
</p>
<div id="bottom-shadow"></div>
<p id="bottom">
{usebb_copyright}
</p>
<div id="bottom-shadow"></div>
Or you could add an extra line in the box:
<p id="bottom">
<a href="url here">Mates Junction</a> Free Community Services
<br />
{usebb_copyright}
</p>
<div id="bottom-shadow"></div>
BTW: Why not try and study the code yourself, everyone with only a little more than average knowledge of xhtml and css should be able to figure out these things.