View Single Post
  #3  
Old 07-01-2009, 06:04 PM
QtrCafe QtrCafe is offline
Junior Member
 
Join Date: Mar 2006
Location: United States
Posts: 19
Geek Article and Review System License Holder Geek Advertising Banner License Holder 
Default

Hey Morgan,

Thanks for your help ...

1. I will take care of it and use redirects.

2. I have missed the categories.php which is a module included with the GARS However it shows all forums and subforums. I would like to make a little change to it which will only show the subforums which are under the forum I am browsing.

I have managed to add the code below to the forum display which does exactly what I want however I am not able to get it positioned in the right place which is at the top-left. Is there a way to use this code in the categories.php module?

Code:
    <!-- Navigation -->    
    <tr>
    <td>
<if condition="$show['forumslist'] && !$show['nosubs']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
        <thead>
        <tr>
                <td class="tcat" style="white-space:nowrap;"><div><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('gar_$itemid')"><img id="collapseimg_gar_$itemid" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_gar].gif" alt="" border="0" /></a>$foruminfo[title]</div></td>
        </tr>
    </thead>
        <tbody style="$vbcollapse[collapseobj_gar]" id="collapseobj_gar_$itemid">
        <tr>
                <td class="panelsurround">
                <div class="panel" align="$stylevar[left]">
                                <div class="fieldset">
                                                                <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[gars_mod_width]" id="gars_container_$itemid">
                                                                        $forumbits
                                                                </table>
                        </div>
                </div>
            </td>
        </tr>
        </tbody>
</table>
</if>
</td>
</tr>

Last edited by QtrCafe; 07-01-2009 at 06:08 PM..
Reply With Quote