Hi from germany,
Im looking for a possibility to change the way how categorys are displayed in forums. I want to make them look like they look at forumhome, to get my forum more structured.
Well, in vBulletin 4.2 the way how the forums in a category which is in a forum are displayed are sub-forums. I dont need sub-forums, so i just edited the "forumhome_subforums" template to this (edit of "forumhome_forumbit_level2_post"):
You see, my skills arent the best. The idea works, but it does kill the style and looks horrible
I really really hope that someone of you has the skills to make that work perfect. It would be so awesome...
Thank you.
Im looking for a possibility to change the way how categorys are displayed in forums. I want to make them look like they look at forumhome, to get my forum more structured.
Well, in vBulletin 4.2 the way how the forums in a category which is in a forum are displayed are sub-forums. I dont need sub-forums, so i just edited the "forumhome_subforums" template to this (edit of "forumhome_forumbit_level2_post"):
Code:
<vb:if condition="THIS_SCRIPT != 'index'"> <vb:each from="subforums" value="row"> <li id="forum{vb:raw forum.forumid}" class="forumbit_post {vb:raw forum.statusicon} L2"> <div class="forumrow table"> <div class="foruminfo td"> <img src="image.png" class="forumicon" id="forum_statusicon_{vb:raw forum.forumid}" alt="" /> <div class="forumdata"> <div class="datacontainer"> <div class="titleline"> <h2 class="forumtitle"><a href="{vb:link forum, {vb:raw row}}">{vb:raw row.title}</a></h2> </div> </div> </div> </div> </div> </li> </vb:each> </vb:if>

Thank you.
Comment