Page 1 of 1

2 easy questions

PostPosted: Thu Jan 03, 2008 5:49 pm
Author: Mr.Black
Your phpBB Version: 2.0.
phpBB Type: phpBB / IMPortal
MODs: No
Your knowledge: Basic Knowledge
Board URL: http://www

PHP Version:
MySQL Version:


What was done before the problem appeared?



What was done to try to solve the problem?




De.scription and Message

2 questions for you:

1) How do i remove the regular ranks on the ranks page? i just want to have special ranks.

2) Where is the mod list in the ACP? i know someone mentioned it on another topic but i don't remember where <img>

PostPosted: Thu Jan 03, 2008 6:55 pm
Author: Mr.Black
another question i just found:

How do i center my banner?

Re: 2 easy questions

PostPosted: Thu Jan 03, 2008 6:57 pm
Author: CaNNon
Mod List: admin > general admin > hacks list.

How do i remove the regular ranks on the ranks page? i just want to have special ranks.


I'm not sure what you want here, one only puts ranks into the avatar area the other gives ranks that can include any powers you wish but won't display that in the avatar area.

Re: 2 easy questions

PostPosted: Thu Jan 03, 2008 7:23 pm
Author: Mr.Black
"CaNNon";p="30074" wrote:I'm not sure what you want here, one only puts ranks into the avatar area the other gives ranks that can include any powers you wish but won't display that in the avatar area.


I am talking about this:
[flash=,:1pxi5sb2]http://www.computermasterminds.com/mockups/boc/forums/ranks.JPG[/flash:1pxi5sb2]

I do not want the "Ranks". I just want the "Special Ranks" to be all the way across.

Re: 2 easy questions

PostPosted: Thu Jan 03, 2008 7:30 pm
Author: CaNNon
Ok, I can't help with that one it's over my head. <img>

Re: 2 easy questions

PostPosted: Thu Jan 03, 2008 7:34 pm
Author: Mr.Black
"CaNNon";p="30078" wrote:Ok, I can't help with that one it's over my head. <img>


ok what about centering my banner?

PostPosted: Thu Jan 03, 2008 9:32 pm
Author: tmotley
I'd bet if you posted your templates/YOUR TEMPLATE/ranks_body.tpl code, someone could figure out how to properly remove the ranks table... leaving the special ranks table full width on the page.

For your banner issue, your URL might prove helpful along with which banner you are wanting to be centered...

PostPosted: Thu Jan 03, 2008 9:45 pm
Author: Mr.Black
"tmotley";p="30082" wrote:I'd bet if you posted your templates/YOUR TEMPLATE/ranks_body.tpl code, someone could figure out how to properly remove the ranks table... leaving the special ranks table full width on the page.

For your banner issue, your URL might prove helpful along with which banner you are wanting to be centered...


Rank_body.tpl:
Code: Select all
 <table>   <tr>         <td>{L_RANKS}</td>     </tr>     <tr>     <td><span><a>{L_INDEX}</a>{NAV_SEPARATOR}{L_RANKS}</span></td>   </tr></table>  <table><tr>       <td>         <table>         <tr>             <th>{L_RANKS}</th>         </tr>         <tr>             <td><span> {L_RANKS} </span></td>             <td><span> {L_MINI} </span></td>             <BEGIN>             <td><span> {L_TOTAL_USERS} </span></td>             <END>         </tr>         <BEGIN>         <tr>             <BEGIN>             <td>             <END>             <BEGIN>             <td>             <END>                 <span>{ranks.RANK_TITLE}<br>{ranks.RANK_IMAGE}</span>             </td>             <td>                 <span>{ranks.RANK_MINI}</span>             </td>             <BEGIN>             <td>                 <span>{ranks.RANK_TOTAL}</span>             </td>             <END>         </tr>         <BEGIN>         <tr>             <td>                 <span> {ranks.userlist.USERS_LIST}</span>             </td>         </tr>         <END>         <END>         </table>     </td>       <td>         <table>         <tr>             <th>{L_SPECIAL_RANKS}</th>         </tr>         <tr>             <td><span> {L_SPECIAL_RANKS} </span></td>             <td>                 <BEGIN>                 <span> {L_TOTAL_USERS} </span>                 <END>                 <BEGIN>                 <span> {L_USERS_LIST} </span>                 <END>             </td>         </tr>         <BEGIN>         <tr>             <td>                 <span>{spe_ranks.RANK_TITLE}<br>{spe_ranks.RANK_IMAGE}</span>             </td>             <BEGIN>             <td>                 <span>{spe_ranks.userlist.USERS_LIST}</span>             </td>             <END>             <BEGIN>             <td>                 <span>{spe_ranks.no_userlist.RANK_TOTAL}</span>             </td>             <END>         </tr>         <END>         </table>     </td></tr></table>  


Banner URL]http://www.bocgaming.org/art/banner.png[/url]

I want it for all my styles

Re: 2 easy questions

PostPosted: Thu Jan 03, 2008 9:55 pm
Author: Mr.Black
ok i have fixed the ranks page.

Now i just need to know how to center that banner on all pages.

PostPosted: Thu Jan 03, 2008 10:20 pm
Author: tmotley
Back up your templates/Integra2/ranks_body.tpl before proceding. I think every ranks_body.tpl is pretty much the same but I only tested on Integra2.

I got Integra2 to show only the special ranks full-width with the following ranks_body.tpl so I'd bet it would work. BACKUP YOURS FIRST.

Code: Select all
   <table>   <tr>         <td>{L_RANKS}</td>     </tr>     <tr>     <td><span><a>{L_INDEX}</a>{NAV_SEPARATOR}{L_RANKS}</span></td>   </tr></table>  <table><tr>     <td>         <table>         <tr>             <th>{L_SPECIAL_RANKS}</th>         </tr>         <tr>             <td><span> {L_SPECIAL_RANKS} </span></td>             <td>                 <BEGIN>                 <span> {L_TOTAL_USERS} </span>                 <END>                 <BEGIN>                 <span> {L_USERS_LIST} </span>                 <END>             </td>         </tr>         <BEGIN>         <tr>             <td>                 <span>{spe_ranks.RANK_TITLE}<br>{spe_ranks.RANK_IMAGE}</span>             </td>             <BEGIN>             <td>                 <span>{spe_ranks.userlist.USERS_LIST}</span>             </td>             <END>             <BEGIN>             <td>                 <span>{spe_ranks.no_userlist.RANK_TOTAL}</span>             </td>             <END>         </tr>         <END>         </table>     </td></tr></table>  




Your banner, I believe, will need to be centered in EACH template you use. It appears that you don't have any other banners up at the top of your page. I achieved success with Integra2 by simply doing the following]          <td><a><img></a></td>  [/code]

REPLACE WITH
Code: Select all
         <td><a><img></a></td>  

PostPosted: Thu Jan 03, 2008 11:20 pm
Author: Mr.Black
"tmotley";p="30085" wrote:Your banner, I believe, will need to be centered in EACH template you use. It appears that you don't have any other banners up at the top of your page. I achieved success with Integra2 by simply doing the following:

Open templates/Integra2/overall_header.tpl
FIND
Code: Select all
         <td><a><img></a></td>  


REPLACE WITH
Code: Select all
         <td><a><img></a></td>  


Ok i just tried that with no luck <img>

Re: 2 easy questions

PostPosted: Fri Jan 04, 2008 1:30 am
Author: Helter
in your overall header.tpl,
FIND
Code: Select all
 <table><tr><td><img></td><td><table><tr> <td><a><img></a></td><BEGIN><td><div>{BANNER_0_IMG}</div></td><END><td><img></td></tr></table></td><td><img></td></tr></table>  


REPLACE WITH

Code: Select all
 <table><tr><td><img></td><td><table><tr> <td><a><img></a></td><!--<BEGIN><td><div>{BANNER_0_IMG}</div></td><END>--><td><img></td></tr></table></td><td><img></td></tr></table>  


*edit* tmotley's code is correct, but you have to remove or disable the banner mod to be able to span into its space

PostPosted: Fri Jan 04, 2008 1:55 am
Author: Mr.Black
"HelterSkelter";p="30090" wrote:in your overall header.tpl,
FIND
Code: Select all
 <table><tr><td><img></td><td><table><tr> <td><a><img></a></td><BEGIN><td><div>{BANNER_0_IMG}</div></td><END><td><img></td></tr></table></td><td><img></td></tr></table>  


REPLACE WITH

Code: Select all
 <table><tr><td><img></td><td><table><tr> <td><a><img></a></td><!--<BEGIN><td><div>{BANNER_0_IMG}</div></td><END>--><td><img></td></tr></table></td><td><img></td></tr></table>  


*edit* tmotley's code is correct, but you have to remove or disable the banner mod to be able to span into its space


how do i disable it?

Re: 2 easy questions

PostPosted: Fri Jan 04, 2008 1:59 am
Author: Helter
it is disabled in the code I posted

PostPosted: Fri Jan 04, 2008 2:05 am
Author: Mr.Black
"HelterSkelter";p="30095" wrote:it is disabled in the code I posted


thanks mate! works now!

thanks tmotley and CaNNon for all the help too!