Page 1 of 1

I want to move my shout box

PostPosted: Thu Oct 05, 2006 11:20 am
Author: ayasha
i would love to move my shout box to the top of my forum index page, i have had several members ask me if this can be done, so i would like to try it out.

thanks in advance

Re: I want to move my shout box

PostPosted: Thu Oct 05, 2006 3:43 pm
Author: Helter
open your template/index_body.tpl

Find and deltete this

Code: Select all
<tr><td><BEGIN><Start><table> <tr> <td><span><a>{L_SHOUTBOX}</a></span></td> </tr> <tr><td> <iframe></iframe> </td> </tr> </table><table><tr><td><img></td><td><img></td><td><img></td></tr></table><End><END></td></tr>


find this

Code: Select all
<BEGIN><tr><td> </td></tr>


replace with

Code: Select all
<BEGIN>


find this

Code: Select all
{BOARD_ANNOUNCES}{BOARD_INDEX}


before, add


Code: Select all
<table><tr><td><BEGIN><Start><table> <tr> <td><span><a>{L_SHOUTBOX}</a></span></td> </tr> <tr><td> <iframe></iframe> </td> </tr> </table><table><tr><td><img></td><td><img></td><td><img></td></tr></table><End><END></td></tr><tr><td> </td></tr></table>


save and close

PostPosted: Thu Oct 05, 2006 7:16 pm
Author: ayasha
thanks Helter :lol:

Re: I want to move my shout box

PostPosted: Thu Oct 05, 2006 8:58 pm
Author: Helter
can you post your index_body.tpl?

Re: I want to move my shout box

PostPosted: Fri Oct 06, 2006 7:14 am
Author: ayasha
here you go, these are the files before applying the edit to move the shoutbox <img>

http://www.4shared.com/file/4331466/1e1 ... dytpl.html

Re: I want to move my shout box

PostPosted: Fri Oct 06, 2006 9:30 am
Author: Dragonsys
Use these for your index_body.tpl

caliskin:
[code]<BEGIN><table><tr><td>{BANNER_18_IMG}</td></tr></table><br><END>  <table>   <tr>    <td><span>{CURRENT_TIME}</span></td>   </tr></table><table>   <tr>    <td><span><a>{L_INDEX}</a></span></td>   </tr>   <tr>    <td><img></td>    <td><span>{WELCOME_USER}</span><br><span>{WELCOME_USER_INFO}</span></td>   </tr>   <BEGIN>   <tr>    <td><span>{LAST_VISIT_DATE}<br>{WELCOME_NEWS}</span></td>   </tr>   <END>   <BEGIN>   <form>   <tr>       <td><span>{L_USERNAME}]

theeighties:
[code]<BEGIN><table><tr><td>{BANNER_18_IMG}</td></tr></table><br><END>  <table>   <tr>    <td><span>{CURRENT_TIME}</span></td>   </tr></table><table>   <tr>    <td><span><a>{L_INDEX}</a></span></td>   </tr>   <tr>    <td><img></td>    <td><span>{WELCOME_USER}</span><br><span>{WELCOME_USER_INFO}</span></td>   </tr>   <BEGIN>   <tr>    <td><span>{LAST_VISIT_DATE}<br>{WELCOME_NEWS}</span></td>   </tr>   <END>   <BEGIN>   <form>   <tr>       <td><span>{L_USERNAME}]

Re: I want to move my shout box

PostPosted: Fri Oct 06, 2006 9:34 am
Author: Dragonsys
here is what I changed:

For caliskin:
FIND & DELETE:
Code: Select all
<BEGIN><Start>    {TPL_HDR}<a>{L_SHOUTBOX}</a>{TPL_HDR1}<table>  <tr><td> <iframe></iframe> </td> </tr> </table>{TPL_FTR}<End><END>


FIND]{BOARD_ANNOUNCES}{BOARD_INDEX}[/code]

BEFORE ADD:
Code: Select all
<table> <tr><td> <BEGIN> <Start>    {TPL_HDR}<a>{L_SHOUTBOX}</a>{TPL_HDR1}<table>  <tr> <td> <iframe></iframe> </td> </tr> </table> {TPL_FTR} <End> <END> </td> </tr> <tr><td> </td></tr> </table>


For theegities]<BEGIN><Start><table> <tr> <td><span><a>{L_SHOUTBOX}</a></span></td> </tr> <tr><td> <iframe></iframe> </td> </tr> </table><table><tr><td><img></td><td><img></td><td><img></td></tr></table><End><END>[/code]

FIND:
Code: Select all
{BOARD_ANNOUNCES}{BOARD_INDEX}


BEFORE ADD]<table> <tr><td> <BEGIN> <Start> <table> <tr> <td><span><a>{L_SHOUTBOX}</a></span></td> </tr> <tr> <td> <iframe></iframe> </td> </tr> </table> <table><tr><td><img></td><td><img></td><td><img></td></tr></table> <End> <END> </td> </tr> <tr><td> </td></tr> </table>[/code]

PostPosted: Fri Oct 06, 2006 10:42 am
Author: ayasha
thanks so much for your help :lol: