View Single Post
  #3 (permalink)  
Old 09-07-2007, 11:56
fets fets is offline
new member
 
Join Date: Jun 2007
Posts: 3
Default

I ve placed the flash code in all position in index_body.tpl but didnt appear on the right side.

Here is the code:

Code:
<table cellspacing="1" class="index_body">
	<tr class="toplines">
		<th colspan="2">{L_FORUM}</th>
		<th>{L_TOPICS}</th>
		<th>{L_POSTS}</th>
		<th>{L_LASTPOST}</th>
	</tr>
	<!-- BEGIN catrow -->
	<tr> 
		<td colspan="5"><h2><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></h2></td>
	</tr>
	<!-- BEGIN forumrow -->
	<tr>
		<td class="row1 one"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="" /></td>
		<td class="row1 two"
		onmouseover="this.style.backgroundColor='{T_TR_COLOR2}'; this.style.cursor='pointer'"
		onmouseout="this.style.backgroundColor=''"
		onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'">
		<h3><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></h3>
		{catrow.forumrow.FORUM_DESC}<br />
		{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</td>
		<td class="row2 one">{catrow.forumrow.TOPICS}</td>
		<td class="row2 one">{catrow.forumrow.POSTS}</td>
		<td class="row2 three">{catrow.forumrow.LAST_POST}</td>
	</tr>
	<!-- END forumrow -->
	<!-- END catrow -->
</table>
<div class="timezone left"><a href="{U_MARK_READ}">{L_MARK_FORUMS_READ}</a></div>
<div class="timezone right">{S_TIMEZONE}</div>
<div class="spacing"></div>

<table cellspacing="0">
	<tr class="lines_3">
		<th>
		<div class="left">
			<!-- BEGIN switch_user_logged_in -->
			{LAST_VISIT_DATE}<br />
			<!-- END switch_user_logged_in -->
			{CURRENT_TIME}<br />
           <span class="nav"><a href="{U_INDEX}">{L_INDEX}</a></span>
		</div>
		<div class="right">
			<!-- BEGIN switch_user_logged_in -->
			<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br /> 
			<a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
			<!-- END switch_user_logged_in -->
			<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
		</div>
		</th>
	</tr>
</table>
<div class="spacing"></div>

<table cellspacing="1" class="index_body">
	<tr> 
		<td colspan="2"><h2><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h2></td>
	</tr>
	<tr> 
		<td class="row1 one" rowspan="2"><img src="templates/NoseBleed/images/whosonline.gif" alt="" /></td>
		<td class="row1 two">{TOTAL_POSTS}<br />
		{TOTAL_USERS}<br />
		{NEWEST_USER}</td>
	</tr>
	<tr> 
		<td class="row1 two">{TOTAL_USERS_ONLINE} &nbsp; [ {L_WHOSONLINE_ADMIN} ] &nbsp; [ {L_WHOSONLINE_MOD} ]<br />
		{RECORD_USERS}<br />
		{LOGGED_IN_USER_LIST}</td>
	</tr>
</table>
<div class="timezone left">{L_ONLINE_EXPLAIN}</div>
<div class="spacing"></div>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<table cellspacing="1">
	<tr> 
		<td><h2><a id="login"></a>{L_LOGIN_LOGOUT}</h2></td>
	</tr>
	<tr> 
		<td class="row1 txtcenter pad4">
		{L_USERNAME}: 
		<input class="post postsmall" type="text" name="username" />
		&nbsp;&nbsp;&nbsp;{L_PASSWORD}: 
		<input class="post postsmall" type="password" name="password" maxlength="32" />
		<input name="autologin" type="hidden" value="1" />
		&nbsp;&nbsp;<input type="submit" class="button" name="login" value="{L_LOGIN}" />
		</td>
	</tr>
</table>
</form>
<div class="spacing"></div>
<!-- END switch_user_logged_out -->

<div class="spacing"></div>

<table cellspacing="1" class="index_body_icons">
	<tr> 
		<td><img src="templates/NoseBleed/images/folder_new_big.gif" alt=""/>
		{L_NEW_POSTS}&nbsp;&nbsp;
		<img src="templates/NoseBleed/images/folder_locked_big.gif" alt="" />
		{L_FORUM_LOCKED}&nbsp;&nbsp;&nbsp;&nbsp;</td>
	</tr>
</table>
<div align="right"><table>
	<tr>
	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"
  id="brain_ad" width="188" height="292">
  <param name="movie" value="brain_ad.swf">
  <param name="bgcolor" value="#FFFFFF">
  <param name="quality" value="high">
  <param name="allowscriptaccess" value="samedomain">
  <embed type="application/x-shockwave-flash"
   pluginspage="http://www.macromedia.com/go/getflashplayer"
   width="188" height="292"
   name="brain_ad" src="brain_ad.swf"
   bgcolor="#FFFFFF" quality="high"
   swLiveConnect="true" allowScriptAccess="samedomain"
  ></embed>
</object></tr></table></div>
Reply With Quote