MyBB Community Forums

Full Version: How do I center my portal layout?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I get the news page on my portal centered? I don't ever plan on adding any of the portal settings so it's just empty space right now.

http://carfanaticsforum.com/portal.php

[Image: mybb_zps154bfb31.jpg]
There is a table in your portal page which is blocking 200px space at left. Looka like:

<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr><td valign="top" width="200">






</td>
<td>&nbsp;</td>
<td valign="top">

You need to remove the striked out lines as below:

<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr><td valign="top" width="200">






</td>
<td>&nbsp;</td>

<td valign="top">
......
Thank you effone.