MyBB Community Forums

Full Version: remove icon column
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to remove the icon column from forumdisplay?
If I remove the following from forumdisplay_thread:
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>
a blank space appear at the table's right edge Huh
Try -

//<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>

It's still blocking it out see if that works.
No, it doesn't work.
I don't understand why removing a single <td></td> mess up the whole table...
// is a PHP comment, that's not going to comment out HTML.

You also need to change:

<td class="tcat" colspan="3" width="66%">

to:

<td class="tcat" colspan="2" width="66%">
Thank you very much!
It works fine with Firefox, Opera, Chrome, Safari, but with Internet Explorer 8 the blank column is still there!

How is it possible? Maybe it's a CSS problem, isn't it?