Seite 1 von 1

<table> in Forum einbetten?

Verfasst: 31.08.2010 21:07
von Generalcrash
Hallo Community,

Ich versuche eine Tabelle aus meinem alten Forum zu übernehmen.
In welche Template Datei muss ich diese <table> einfügen damit diese unterhalb der Navigation angezeigt wird ?

Code: Alles auswählen

<table width="100%" border="0" cellspacing="1" cellpadding="4">
<tr><td class="row2" width="33%" height=”65” valign="top">
<hr color="353535">

<!--marquee height="300" width="200" onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrollamount="1" style="Filter:Alpha(Opacity=150, FinishOpacity=150, Style=1, StartX=0, StartY=90, FinishX=0, FinishY=0);"-->
<font face="verdana" color="white"><center>
<table border="0" width="100%">
  <colgroup>
    <col width="50%">
    <col width="10%">
    <col width="40%">

  </colgroup>


<!-- START LEFT SIDE NEWS -->
<center>





</center>
<!-- END LEFTSIDE NEWS -->


</table>
</center></font><!--/marquee--></td>
<td class="row2" width="33%" valign="top"><center>

<hr color="353535">
<center>
<marquee height="300" width="400" onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrollamount="1" style="Filter:Alpha(Opacity=150, FinishOpacity=150, Style=1, StartX=0, StartY=90, FinishX=0, FinishY=0);">
<font face="verdana" color="white"><center>




<!--START SCROLLING CENTER -->
<center>



</center>
<!--END SCROLLING CENTER -->



</center></font></marquee></td>
<td class="row2" height=”65” width="40%" valign="top">
<hr color="353535">


<!-- START RIGHT SIDE LINKS -->
<center>


</center>
<!-- END RIGHT SIDE LINKS -->

</td>
<tr><td class="row2" colspan="3">
<center>

<!-- START LINKS -->


<!-- END LINKS -->

</center>
</td></tr></td></tr>
</table>
~Crash~

Re: <table> in Forum einbetten?

Verfasst: 31.08.2010 21:08
von DeepSurfer
Im Normalfall in der overall_header.html.

Welchen Style benutzt Du denn für dein Forum ?

Re: <table> in Forum einbetten?

Verfasst: 31.08.2010 21:14
von Generalcrash
Nennt sich Acid Tech ...
Ich hab es leider nicht hinbekommen prosilver an meine Wünsche des Styles anzupassen deswegen nutze ich diesen.

An welche Stelle sollte ich die Tabelle einfügen ?
Bei allen bisheren Versuchen erhalte ich eine Syntax PHP Fehlermeldung...


~Crash~

Re: <table> in Forum einbetten?

Verfasst: 02.09.2010 21:57
von Generalcrash
Oder ist es irgendwie möglich die <table> von extern bzw aus einem anderen Dokument heraus einzubetten ?

~Crash~

Re: <table> in Forum einbetten?

Verfasst: 02.09.2010 22:06
von franki
Generalcrash hat geschrieben:Hallo Community,

Ich versuche eine Tabelle aus meinem alten Forum zu übernehmen.
In welche Template Datei muss ich diese <table> einfügen damit diese unterhalb der Navigation angezeigt wird ?

~Crash~
Hallo
Bei AcitTech wäre das unterhalb von

Code: Alles auswählen

<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
	<div class="pm-notify-new"><div class="pm-notify-header">{L_INFORMATION}</div>{L_BOARD_DISABLED}</div>
<!-- ENDIF -->
Dann wäre das unterhalb der Navi und oberhalb von LAST_VISIT_DATE und CURRENT_TIME

*EDIT*
Hab mir den Code mal angeschaut.
Da fehlten einmal ein </center>, dann fehlte ein </tr> und es waren ein </dt> und ein </tr> zu viel.
Dann hattest Du einmal <!--marquee height="300" width so drin und einmal <marquee height="300" width so drin.
Versuche es jetzt mal mit diesem Code.

Code: Alles auswählen

<table width="100%" border="0" cellspacing="1" cellpadding="4">
	<tr>
		<td class="row2" width="33%" height=”65” valign="top">
			<hr color="353535">
			<!--marquee height="300" width="200" onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrollamount="1" style="Filter:Alpha(Opacity=150, FinishOpacity=150, Style=1, StartX=0, StartY=90, FinishX=0, FinishY=0);"-->
				<font face="verdana" color="white">
					<center>
						<table border="0" width="100%">
							<colgroup>
								<col width="50%">
								<col width="10%">
								<col width="40%">
							</colgroup>
							<!-- START LEFT SIDE NEWS -->
								<center>
								</center>
							<!-- END LEFTSIDE NEWS -->
						</table>
					</center>
				</font>
			<!--/marquee-->
		</td>
		<td class="row2" width="33%" valign="top">
			<center>
				<hr color="353535">
			</center>
			<!--marquee height= height="300" width="400" onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrollamount="1" style="Filter:Alpha(Opacity=150, FinishOpacity=150, Style=1, StartX=0, StartY=90, FinishX=0, FinishY=0);"-->
				<font face="verdana" color="white">
					<center>
					<!--START SCROLLING CENTER -->
						<center>
						</center>
					<!--END SCROLLING CENTER -->
					</center>
				</font>
			<!--/marquee-->
		</td>
		<td class="row2" height=”65” width="40%" valign="top">
			<hr color="353535">
			<!-- START RIGHT SIDE LINKS -->
				<center>
				</center>
			<!-- END RIGHT SIDE LINKS -->
		</td>
	</tr>
	<tr>
		<td class="row2" colspan="3">
			<center>
				<!-- START LINKS -->
				<!-- END LINKS -->
			</center>
		</td>
	</tr>
</table>
evtl. vor dem <table width="100%" border="0" cellspacing="1" cellpadding="4">
und nach dem dem </table> ein <br /> einfügen falls es zu eng ist.

Re: <table> in Forum einbetten?

Verfasst: 03.09.2010 16:07
von Generalcrash
Leider kommt dieser Fehler und das Board ist weg.

Parse error: syntax error, unexpected '}' in /mnt/web7/30/68/52240168/htdocs/Forum/cache/tpl_acidtech_overall_header.html.php on line 229

~Crash~

Re: <table> in Forum einbetten?

Verfasst: 03.09.2010 18:46
von Generalcrash
Konnte den Fehler nun beheben.
Es lag an meinen Notizen mit <!-- -->
Als ich davon alle aus meiner <table> entfernt hatte funktionierte es ohne beanstandung ;D

~Crash~