MyBB Community Forums

Full Version: Please Help to align
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Im just Edit the colspan="2" from "3" then Its not align now please help.

this is under "forumbit_depth1_cat"

<div id="cat_{$forum['fid']}" class="content">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead" colspan="2"><strong><a href="{$forum_url}">{$forum['name']}</a></strong> ยป <span style="font-size: 11px;"> {$forum['description']}
<td class="thead" width="85" align="center" style="white-space: nowrap" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="thead" width="85" align="center" style="white-space: nowrap" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="thead" width="200" align="center" colspan="1"><span class="smalltext" ><strong>{$lang->forumbit_lastpost}</strong></span><span style="float: right;"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></span></td>
</td>
</tr>
</thead>
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
{$sub_forums}
</tbody>
</table>
<div class="table_footer"></div>
<br />
</div>

[Image: 6665018.png]
i dont see the problem?
o u mean its not centered?
@ the first line of the code, replace it with:

<div id="cat_{$forum['fid']}" class="content" style="text-align: center;">
@fma965: Yes sir its not center the "test try test" in the screen shot. please help.


@nadlerz: when I applied it the forum titles and descriptions are centered but not the one the I mark box.

somebody help me please?
find code similar to below in forumbit_depth1_forum_lastpost template

<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>

add <div style="text-align: center;"> AND </div> for the above

<div style="text-align: center;">
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>
</div>


still its not in working sir. If you need my codes tell me sir so that you can fix my problem easily.