Style Switcher
Current time: 21-05-2012, 08:37 PM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
i need help
25-10-2007, 09:36 PM
Post: #1
i need help
i have this problems how can i chance this
[Image: 64248646vl0.png]
i know i must change it in forumbit_depth2_forum but i dont know how
Find all posts by this user
Quote this message in a reply
25-10-2007, 10:05 PM
Post: #2
RE: i need help
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
Code:
<td class="tcat" width="45">&nbsp;</td>
Change "45" to the width of your on/off/offlock.gif icon!

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
25-10-2007, 10:12 PM (This post was last modified: 25-10-2007 10:14 PM by Koray61.)
Post: #3
RE: i need help
thanks for the help
i use safari but when iam going to my site with opera i have this problem
Find all posts by this user
Quote this message in a reply
04-11-2007, 12:23 AM (This post was last modified: 04-11-2007 12:23 AM by Koray61.)
Post: #4
RE: i need help
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]
Find all posts by this user
Quote this message in a reply
04-11-2007, 10:16 AM
Post: #5
RE: i need help
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?

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
04-11-2007, 02:40 PM
Post: #6
RE: i need help
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
Find all posts by this user
Quote this message in a reply
04-11-2007, 03:01 PM
Post: #7
RE: i need help
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.

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
04-11-2007, 05:09 PM (This post was last modified: 04-11-2007 05:20 PM by Koray61.)
Post: #8
RE: i need help
forumbit_depth2_forum from redvision template

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
Find all posts by this user
Quote this message in a reply
04-11-2007, 07:09 PM
Post: #9
RE: i need help
This would be the proper place.
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
Although I really doubt this will fix your problem, but it is worth a shot.

"Freedom is irrelevant. Resistance is futile." -- Borg Collective
Visit this user's website Find all posts by this user
Quote this message in a reply
04-11-2007, 10:42 PM
Post: #10
RE: i need help
ok i have done it can you look at my page ands say the result ? thx for you help
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


 Quick Theme: