Support Forums
MyBB forum board logo centered? - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Webmaster Support (https://www.supportforums.net/forumdisplay.php?fid=36)
+---- Forum: Forum Software Help (https://www.supportforums.net/forumdisplay.php?fid=49)
+---- Thread: MyBB forum board logo centered? (/showthread.php?tid=23468)



MyBB forum board logo centered? - Graveee - 11-28-2011

Hey there! Graveee here.

I am currently managing a MyBB forum located here, I have created a sufficient board logo, but I need it centred, if someone could walk me through how to centre it I'd love you forever!

Thanks -G.


RE: MyBB forum board logo centered? - Hei - 11-28-2011

AdminCP>Templates & Styles > Templates > Find you theme > Header Templates > Header

After some lines you'll see

Code:
<div class="logo">

change it to

Code:
<div class="logo" align="center">

save and exit , all done.


RE: MyBB forum board logo centered? - iMoney - 11-28-2011

Use the align code which is used in threads and posts


RE: MyBB forum board logo centered? - Hei - 11-28-2011

(11-28-2011, 07:00 AM)iMoney Wrote: Use the align code which is used in threads and posts

the align code used in threads are

Code:
[align=center][/align[

its a BB code

and the way to center a image/text or anything in html page we use

Code:
<align="center"></align>

got the difference?


RE: MyBB forum board logo centered? - D3xus - 11-29-2011

I was going to mention <p align="center"> </p> then use the logo.
However Hei knows what he's doing; use the align code within the <div> code.