MyBB Community Forums

Full Version: New reply trow issue.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is the code for post options in the new reply template

<tr>
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong><br>
<span class="smalltext">
<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="6"{$postoptionschecked['signature']} /> {$lang->options_sig}</label>
{$disablesmilies}
</span>
</td>
</tr>

I've deleted one of the td classes leaving the code wrapped in one, but in the below image the background ( trow ) 
doesn't extend to 100%? Is it possible to make it full width, while only keeping one td class?

[Image: cb034d455f3421cb8d349fc0e1608486.png]
You need to tell it how many columns to span. Smile
(2016-03-04, 07:35 PM)CorysRevenge Wrote: [ -> ]You need to tell it how many columns to span. Smile

What do you mean exactly? Smile
add colspan=2 for the td and check.. you might need to add the colspan to the modoptions td as well in the newreply_modoptions template

change this...
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong><br>

to this...
<td class="trow1" valign="top" colspan=2><strong>{$lang->post_options}</strong><br>
(2016-03-05, 07:08 AM)mmadhankumar Wrote: [ -> ]add colspan=2 for the td and check.. you might need to add the colspan to the modoptions td as well in the newreply_modoptions template

change this...
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong><br>

to this...
<td class="trow1" valign="top" colspan=2><strong>{$lang->post_options}</strong><br>

Thank you sir I will give this ago now.