MyBB Community Forums

Full Version: Deformation.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1. I Tried every thing But Could Not Fix this Deformation:
[attachment=5834]
This forum is Located at : www.freewebworld.jmfhosting.com/FWW

The Actual Look has to be Like This :
[attachment=5835]

I have attcahed the contents of the index_whoseonline Template.
[attachment=5836]

2 . How To Move This Column Towards left .. To Increase the width of the Last Post Column
[attachment=5837]

Thank U,
Regards,
Mano
There is something wrong with the colspan tag in one of the lines there. Try to see the first table (who's online with the dark blue border). The TR needs to have a colspan="2" tag or something like this ... Am not that sure, but that would mess my layouts too ...
Yes.. I Know its about colspan....Let me see again..
Well.. I am reallu unable to figure out how to do that ...
you just need to change the classes (trow1 and trow2) to any new classes and manage it from you addetional CSS.. I think thats it.. and I'll try it and replay again if I did it..

and please If you don't mind attach the full index template to allow me to see it how it'll displayed.
Can Any One suggest Something ???
You need to add colspan="2" to your index_stats template.

This:
<tr><td class="tcat"><strong>{$lang->boardstats}</strong></td></tr>

Becomes:
<tr><td class="tcat" colspan="2"><strong>{$lang->boardstats}</strong></td></tr>

This:
<td class="trow1"><span class="smalltext">

Becomes:
<td class="trow1" colspan="2"><span class="smalltext">
Tank You Musicalmidget,

Can You Plz Suggest Some Solution to the Qs 2 In My First Post ?

Regards,

Mano
Forum Bit Templates > forumbit_depth1_cat

Find:
<td class="tcat" width="35">&nbsp;</td>
<td class="tcat"><strong>{$lang->forumbit_forum}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_posts}</strong></td>
<td class="tcat" width="200" align="center"><strong>{$lang->forumbit_lastpost}</strong></td>

The last is the lastpost part, so make it 300 instead. Full template like that:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead" colspan="5">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" /></div>
<div><strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</td>
</tr>
</thead>
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<tr>
<td class="tcat" width="35">&nbsp;</td>
<td class="tcat"><strong>{$lang->forumbit_forum}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_posts}</strong></td>
<td class="tcat" width="300" align="center"><strong>{$lang->forumbit_lastpost}</strong></td>
</tr>
{$sub_forums}
</tbody>
</table>
<br />

It's all there in templates you know, if you view source you'll see template comments like these telling you where to look:
<!-- end: nav -->
			<br class="clear" />
<!-- end: header -->
<!-- start: forumbit_depth1_cat -->
Thank U.