Topic: How to add some HTML under Powered By: PunBB

I'm having a problem with adding some HTML in new line under "Powered By: PunBB"
The code is always gonna be on the right of line "Powered By: PunBB" "MY HTML"
or if I add float: right to the new HTML code I am getting "MY HTML" "Powered By: PunBB"

I was trying to make "Powered By: PunBB" <br> "MY HTML"  with no result.
I was trying with display: block; property for both of codes, no result.

How can I do it?

2

Re: How to add some HTML under Powered By: PunBB

http://s39.radikal.ru/i085/0812/ca/1cbaa1c0880c.jpg

Re: How to add some HTML under Powered By: PunBB

Thanks it works, but how to change the distance between div and p?
I was trying set margin to 0 but it dont works.

http://img114.imageshack.us/img114/640/78568435xz0.jpg

4 (edited by RB 2008-12-21 23:07)

Re: How to add some HTML under Powered By: PunBB

There is mistake in my example. You should use "clear: right", but it seems you noticed it already :-)

Now about margin...  just convert <p id="copyright"></p> into <div id="copyright"></div>, but it's better to try <div id="copyright" style="margin-top: 6px"></div> 'coz string "Powered by PunBB" shifts to top when you convert 'p' into 'div'. You will see it for yourself...

Re: How to add some HTML under Powered By: PunBB

Hehe I was already trying to convert copyright to div it did not worked, beacuse I had a clear: left; wink
Thanks for help, now I know for what property clear is wink

6

Re: How to add some HTML under Powered By: PunBB

np)