MyBB Community Forums

Full Version: Remove trow1 from a template it doesn't exist in?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 3rZiZ.png]

I want to remove that, according to Inspect Element, it's located within this line of code:
<td class="trow1" align="center" valign="top" width="1"></td>

However, the code I got in that specific template, is the following:
<td class="{$bgcolor}" align="center" valign="top" width="1"></td> 


Any help?
class="{$bgcolor}"

Remove that.
(2013-06-30, 07:33 PM)labrocca Wrote: [ -> ]class="{$bgcolor}"

Remove that.

Like this?
<td align="center" valign="top" width="1"></td> 

If I do that, the space where it used to be, becomes white.
[Image: 3s0Ct.png]
And what do you exactly want to do?

If you want to remove .trow1 but keep .trow2, change
class="{$bgcolor}"
to
class="trow2"

Or if you want to change it to the same color as the neighbor <td>, inspect it and change {$bgcolor} to the class specified in inspected <td>.

Other than that or labrocca's solution, I've no idea what's your goal. Bigger screenshot, more detailed explantation and/or link to your site may help.