MyBB Community Forums

Full Version: MyBB trow1 width ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to increase the width of trow fields?
I would suggest to set the width inline with the HTML. Do not use a global CSS definition for .trow1!
Go to the template and chose your width like this:
<tr>
<td class="trow1" width="25%">One quarter of total width</td>
<td class="trow1" width="25%">One quarter of total width</td>
<td class="trow1" width="50%">Half of the total width</td>
</tr>
or
<tr>
<td class="trow1" width="1">As small as possible; the content stretches to the real width</td>
<td class="trow1" width="33%">A third of total width</td>
<td class="trow1">The rest of the total width</td>
</tr>

[ExiTuS]