MyBB Community Forums

Full Version: Get every forum the same length
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

I have a question, all my forums have almost the same length but some forums a shorter. Is it possible to get the hole forum the same length??

I hope everyone knows what I mean. and someone can fix this for me

See www.galaxyfreaks.nl/index.php of you don't know what I main you see the section "toestellen" is shorter then the section "Android Applicaties en Games" and i want to set every forum with the same length.


Thanks!!
Your forum is fine for me from all angles.
http://i.imgur.com/LkVya.png
huh, why at my computer not ???
Try to see it in different browsers.

Also if possible take a screenshot and attach so I could see where the length is messing up.
hmmmm.. I use Chrome and on this browser its messing up, using Internet Explorer its fine..


See the screens:
[attachment=25932]
[attachment=25933]


And if I zoom in with chrome its a little bit beter, strange!!

Edit:
On Firefox is also all fine, so the problem is in Chrome...
Alright, open "forumbit_depth2_forum" and search for width="1" attributes. You either have edited these width values from default. Add width attribute like this;
<tr>
<td class="{$bgcolor}" align="center" valign="top"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap" width="85">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap" width="85">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap" width="200">{$lastpost}</td>
</tr>
I have delete the width="1" attributes that was standard in the forumbit_depth2_forum and put the codes in the forumbit_depth2_forum:

<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap" width="85">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap" width="85">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap" width="200">{$lastpost}</td>
</tr>

And now everything is good in Chrome, Internet Explorer and Firefox Thanks!!
Ony thing I see is the image from subscribe forum and RSS on the index is on Chrome and Firefox underneed each other like I set and in Internet explorer not thats only whats is changes now


Edit:
You can let the width="1" code in it, thats have no effect leaving it or delete it, only the forum icons a little bigger with deleting
In the same template, change the "span" into "div" in forum subscription code.
Thanks but in internet explorer still the same, the icons are not underneed each other.
I have tryed to put between the codes the <br> or <br /> code but in internet explorer the images still not underneed each other. The rest of the browsers is it fine.
You didn't changed the span tags to div . Try to change these if it works?
Pages: 1 2