umm this is what i want to do

1-.-SGTHLDMN-.1

New Member
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
 
Space out cats...

In forumhome template find and delete this:

HTML:
<thead>
	<tr align="center">
	  <td class="thead">&nbsp;</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">&nbsp;</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
 
Back
Top