25-10-2007, 09:36 PM
Pages: 1 2
25-10-2007, 10:05 PM
You are using IE aren't you?
Width of your on/off/offlock.gif image is bigger than "45"
You need to edit "forumbit_depth1_cat" template
Find
Change "45" to the width of your on/off/offlock.gif icon!
Width of your on/off/offlock.gif image is bigger than "45"
You need to edit "forumbit_depth1_cat" template
Find
Code:
<td class="tcat" width="45"> </td>25-10-2007, 10:12 PM
thanks for the help
i use safari but when iam going to my site with opera i have this problem
i use safari but when iam going to my site with opera i have this problem
04-11-2007, 12:23 AM
hello ivgeo i have a problem. You can see the problem with windows but i dont use windows and thats the problem why i cant send you a photo. When you go to my forum http://www.turkcuyuz.com/Forum you can see there is a problem with the tables how can i fix it. ??? But you must usw IE
the probleme is liike this::
![[Image: ads%FDz.GIF]](http://tddesing.td.funpic.de/ads%FDz.GIF)
the probleme is liike this::
04-11-2007, 10:16 AM
hmm, I don't know...
I see you have many plugins installed, maybe some of them are in conflict.
There are too much errors in your html. 193 errors to be exact.
Is this happening with every theme you have installed?
I see you have many plugins installed, maybe some of them are in conflict.
There are too much errors in your html. 193 errors to be exact.
Is this happening with every theme you have installed?
04-11-2007, 02:40 PM
in this picture the person who helps sayed:
<tr>
<td class="trow1" align="center" valign="top"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
<td class="trow2" valign="top">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="trow1" valign="top" align="center">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="trow2" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="trow1" valign="top" width="200" align="center"><span style="text-align: center;">{$lastpost}</span></td>
</tr>
he must do this in the forumbit_depth2_forum
but when i do this then there is some things different the numbers are not so big like you have do this. But icant look the other themes because i havent windows with safari and firefox there is no problem also with opera
<tr>
<td class="trow1" align="center" valign="top"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
<td class="trow2" valign="top">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="trow1" valign="top" align="center">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="trow2" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="trow1" valign="top" width="200" align="center"><span style="text-align: center;">{$lastpost}</span></td>
</tr>
he must do this in the forumbit_depth2_forum
but when i do this then there is some things different the numbers are not so big like you have do this. But icant look the other themes because i havent windows with safari and firefox there is no problem also with opera
04-11-2007, 03:01 PM
Code:
<td class="trow1" valign="top" width="200" align="center"><span style="text-align: center;">{$lastpost}</span></td>He is telling you to add width="200", you don't need to replace everything.
04-11-2007, 05:09 PM
forumbit_depth2_forum from redvision template
yeah but where must i fix it i cant find the 200 and your template is a lil bit different i think
sorry i know i bug you
PHP Code:
<tr>
<td class="{$bgcolor}" align="center" valign="middle"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
<td class="{$bgcolor}" valign="middle" style="font-size:16px;">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
<td class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap; font-size:16px;">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap; font-size:16px;">{$threads}{$unapproved['unapproved_threads']}</td>
</tr>
yeah but where must i fix it i cant find the 200 and your template is a lil bit different i think
sorry i know i bug you
04-11-2007, 07:09 PM
This would be the proper place.
Although I really doubt this will fix your problem, but it is worth a shot.
PHP Code:
<tr>
<td class="{$bgcolor}" align="center" valign="middle"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
<td class="{$bgcolor}" valign="middle" style="font-size:16px;">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" width="200" valign="middle" align="left" style="white-space: nowrap">{$lastpost}</td>
<td class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap; font-size:16px;">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap; font-size:16px;">{$threads}{$unapproved['unapproved_threads']}</td>
</tr>
04-11-2007, 10:42 PM
ok i have done it can you look at my page ands say the result ? thx for you help
Pages: 1 2
![[Image: 64248646vl0.png]](http://img233.imageshack.us/img233/6024/64248646vl0.png)