2012-05-06, 12:01 PM
2012-05-06, 12:15 PM
Can you post code of .thead here?
I think you missed repeat in code.
I think you missed repeat in code.
2012-05-06, 02:28 PM
(2012-05-06, 12:15 PM)JovanJ. Wrote: [ -> ]Can you post code of .thead here?
I think you missed repeat in code.
Where can I find this piece of code?
2012-05-06, 03:58 PM
Templates -> global.css of your theme.
2012-05-06, 05:17 PM
You probably need to set the colspan of that td to something like colspan="4"
Example:
Example:
<div id="cat_{$forum['fid']}" class="content">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"><thead>
<tr>
<td class="thead" colspan="4">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="indexdesc">{$forum['description']}</div></div>
</td>
</tr>
</thead>
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
{$sub_forums}
</tbody>
</table>
<br />
</div>