MyBB Community Forums

Full Version: Chang position of image " Forum Contains New Posts" " Forum Contains No New Posts" ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 611200972456am.png]

move all to center????
(2009-06-11, 12:28 AM)mine90 Wrote: [ -> ][Image: 611200972456am.png]

move all to center????

Just put center tags around it.

<center>Text goes here</center>
(2009-06-11, 12:58 AM)Pingo Wrote: [ -> ]
(2009-06-11, 12:28 AM)mine90 Wrote: [ -> ][Image: 611200972456am.png]

move all to center????

Just put center tags around it.

<center>Text goes here</center>

what template or CSS file I can edit...???
I think they are in the index template.
I think you can use table to make it center.

<table align="center">
<tr>
<td>
<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
</tr>
</td>
</table>
(2009-06-11, 01:30 AM)RateU Wrote: [ -> ]I think you can use table to make it center.

<table align="center">
<tr>
<td>
<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
</tr>
</td>
</table>

thanks so much.... I finished!!!!