Quote:
Originally Posted by talenak
I have the exact same problem as lovelypk. I added the code under $navbar but I don't really understand how this works so I don't know HOW that is supposed to tell me if all the requirements are being met.
Help?
|
Ewww! Custom skin that doesn't use the default configuration!!! lol (sorry, not a bad skin, just a big problem for you

)
It looks like you're not using threadicons at all so the problem is that you have 1 too many columns being spanned.
Since you've already added the new code....
IN FORUMDISPLAY
=============
Find (or the original):
Code:
<if condition="$show['threadicons'] && !is_member_of($vbulletin->userinfo, $postpreviewusergroups) && $vbulletin->options[ajaxpostpreview_enable] == 1 && (!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
<td class="thead" colspan="3"> </td>
<else />
<if condition="$show['threadicons'] && is_member_of($vbulletin->userinfo, $postpreviewusergroups) || $vbulletin->options[ajaxpostpreview_enable] == 0 || in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if></if>
<td class="thead" width="100%">
Try replacing with:
Code:
<if condition="$show['threadicons'] && !is_member_of($vbulletin->userinfo, $postpreviewusergroups) && $vbulletin->options[ajaxpostpreview_enable] == 1 && (!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
<td class="thead" colspan="2"> </td>
<else />
<if condition="$show['threadicons'] && is_member_of($vbulletin->userinfo, $postpreviewusergroups) || $vbulletin->options[ajaxpostpreview_enable] == 0 || in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))">
<td class="thead" colspan="1"> </td>
</if>
<td class="thead" width="100%">
and see if that works. If it doesn't work, send me your forumdisplay template via PM and I'll have a look at how it's spanning the columns.