MyBB Community Forums

Full Version: Having trouble with the on off and lock icons.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I have been trying to center these darn things and so far everything I have tried has not worked. Dodgy .
Link to the theme, or at least code?
<dl class="forum_legend smalltext" align="center">
	<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>
Give a width to the .forum_legend class and apply "margin: 0 auto;" to it.
(2010-02-09, 02:23 AM)computergeek67 Wrote: [ -> ]Give a width to the .forum_legend class and apply "margin: 0 auto;" to it.

That just made everything go to the left Sad.

Edit: well I tried using this -

.forum_legend, .forum_legend dt, .forum_legend dd {
	padding: 0;
        width: 940px;
        align: center;
        text-align: center;
}

That made them go to the center,but they are stacked and not all in the same area.
<div class="forum_legend smalltext" align="center">
	<img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" />
	{$lang->new_posts}

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

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

That sorts it!
(2010-02-09, 12:11 PM)punked Wrote: [ -> ]
<div class="forum_legend smalltext" align="center">
	<img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" />
	{$lang->new_posts}

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

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

That sorts it!
That fixed it Big Grin. Thanks man.