Topic: Powered by PunBB © .... at center

Hi,
I would like to place "Powered by PunBB© Copyright 2002?2005 Rickard Andersson" at footer center, how to do that?

Re: Powered by PunBB © .... at center

Add this at the bottom of your css.

p.conr {clear: both; float: left; text-align: center; width: 100%;}
ul.conr {clear: right; float: right; text-align: right;    width: 40%}

.conr is defined in base.css and affects both the copyright text and the "Show new posts since last visit/Mark all topics as read" part therefore I used p.conr to affect only the copyright and ul.conr, which is the very same of .conr in the base.css, to put the "Show new posts" back to its place. I didn't notice any other forums' parts affected by .conr, if you notice something strange let me know.

3 (edited by Jurgis 2007-01-07 14:08)

Re: Powered by PunBB © .... at center

Hm... Now footer looks like:
http://img219.imageshack.us/img219/6058/counteryq2.th.png
Like You can see I'm using users counter for my forum:

<p class="conr"><a target="_blank" href="http://blablabla"><img width=88 height=31 border=0 src="http://www.blabla alt="bla Bla bla"></a></p>

Counter should be at the right footer side.

4 (edited by Strofanto 2007-01-07 15:03)

Re: Powered by PunBB © .... at center

p.conr {clear: both; float: left; text-align: center; width: 100%;}
ul.conr, p.stats {clear: right; float: right; text-align: right;    width: 40%}

And

<p class="stats"><a target="_blank" href="http://blablabla"><img width=88 height=31 border=0 src="http://www.blabla alt="bla Bla bla"></a></p>

Watch that target="_blank", it makes your page XHTML 1.0 strict not valid.

5 (edited by Jurgis 2007-01-07 15:52)

Re: Powered by PunBB © .... at center

Almost... smile
http://img90.imageshack.us/img90/9480/copyrightsg9.th.png
Why copyright is on the footer bottom? I need to put it on the top, like counter. How to do that?

Re: Powered by PunBB © .... at center

I tried some but the result is not acceptable, I'm afraid it's beyond my skills.

Re: Powered by PunBB © .... at center

Anyway, Thank You.