1 1-.-SGTHLDMN-.1 New Member Jan 8, 2009 #1 i want to make it where guests can see the sections but when trying to enter them they have to log in and i also want to space out the catagories a bit how do i do this
i want to make it where guests can see the sections but when trying to enter them they have to log in and i also want to space out the catagories a bit how do i do this
H Hoxxy New Member Jan 8, 2009 #2 Space out cats... In forumhome template find and delete this: HTML: <thead> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> save. In forumhome_forumbit_level1_nopost template find: PHP: <if condition="$childforumbits"> Add below: HTML: <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> now in the same template add this right at the top: HTML: <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="margin:0 0 7px;"> now at the end of that line you will see this: Code: margin:0 0 7px; This is the space between cats so just adjust to your needs as to your other problem...check user permissions I think theres something there that does what you need
Space out cats... In forumhome template find and delete this: HTML: <thead> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> save. In forumhome_forumbit_level1_nopost template find: PHP: <if condition="$childforumbits"> Add below: HTML: <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> now in the same template add this right at the top: HTML: <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="margin:0 0 7px;"> now at the end of that line you will see this: Code: margin:0 0 7px; This is the space between cats so just adjust to your needs as to your other problem...check user permissions I think theres something there that does what you need