This won't be fixed, sorry. The fix is probably by adding a table to level1 or level2 post template.
Announcement
Collapse
No announcement yet.
[3.0.3] Category Splitting
Collapse
X
-
OK... why didn't you just tell me that when I asked originally? Instead of having me wait nearly 2 months for a reply.
Cheers,
RobertVisit NoizPollution.com // Your Music Source
Do not PM or email me for support, you will not receive a response. Please post all requests for support in the main vBulletin forums or via the support system in the main members section of the site.
Comment
-
Floris if i use this, will all of the categories line up or not, as i'm using one similar at the moment, and this happens -
http://www.tech-arena.co.uk/forum/
See that the last post colum doesn't line up with the rest.
I've been told it's not fixable by the person who gave me their version.
Is yours the same, or do yours line up ?http://www.eteknix.com/images/misc/vbulletin4_logo.png
eTeknix.com - http://www.eteknix.com
eTeknix Forums - http://forums.eteknix.com
Comment
-
ye i've changed it back now.
I know jake bunce made a hack similar for this, and then made a fix to make the colums line up, but it didn't work.
I'll try it all again later maybe.http://www.eteknix.com/images/misc/vbulletin4_logo.png
eTeknix.com - http://www.eteknix.com
eTeknix Forums - http://forums.eteknix.com
Comment
-
Fixing problem with subforums not displyaing properly and components floating around
Originally posted by AlfarinHi Floris,
Thanks for the tutorial. I managed to get this to work for the fixed width forum of mine no problem; however the subforums are not quite working for subforums with sub categories (see http://www.xecutek.com/testvb/ using my member area username and password; if you cannot access this information, contact me through PM and I'll give you a different username and password for it). Is there a way to make it so that the same will work for subcategories with further subcategories?
Cheers,
Andy Huang
For those who have had problems with subforums not displaying properly (parts of the forum floating around where they are not supposed to be). After looking around the code on a 3.0.7 installation where the page width is fixed I found that modifying the template called "FORUMDISPLAY" was the best way to go.
Try replacing "$forumbits" with
Code:<!-- HACK FOR GETTING SPLIT FORUM WITH CHILDREN TO WORK --> <tr> <if condition="$vboptions[showmoderatorcolumn]"> <td colspan="7"> <else /> <td colspan="6"> </if> $forumbits </td> </tr> <!-- / HACK FOR GETTING SPLIT FORUM WITH CHILDREN TO WORK -->
Comment
-
For 100% css validation remove the <thead> tags in the FORUMHOME first step so... rather than
PHP Code:<!-- guest welcome message -->
<if condition="$show['guest']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</thead>
</table>
</if>
<!-- / guest welcome message -->
<!-- main -->
$forumbits
<!-- /main -->
PHP Code:<!-- guest welcome message -->
<if condition="$show['guest']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
</if>
<!-- / guest welcome message -->
<!-- main -->
$forumbits
<!-- /main -->
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment