Seite 1 von 1

Überschrift unten...

Verfasst: 26.04.2005 13:19
von Gast210225
Hallo,
ich habe 2 Dateien:
xxx.php

Code: Alles auswählen

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);

$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);

$page_title = 'test page';
include($phpbb_root_path . 'includes/page_header.'.$phpEx);

$template->set_filenames(array(
	'hallo' => 'hallo.tpl'
));


$template->assign_vars(array(
	'L_TEXT01' => 'Hallo! Test',
'L_TEXT01' => 'Text 2'

));

$template->pparse('hallo');

include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
und hallo.tpl

Code: Alles auswählen

<a href="{U_INDEX}" class="nav">{L_INDEX}</a>

<table width="100%" border="0" cellpadding="4" cellspacing="1" class="forumline">
	<tr>
		<th class="thTop">Hallo! Test</th>
	</tr>
	<tr>

		{L_TEXT01}<br />
		{L_TEXT02}<br />
	</tr>

</table>
Nur der Text ist über der Überschrift... Was mache ich falsch

Verfasst: 26.04.2005 13:21
von Leuchte

Code: Alles auswählen

   <tr> 

      {L_TEXT01}<br /> 
      {L_TEXT02}<br /> 
   </tr> 
Wie wärs mit <td> </td>?

Verfasst: 26.04.2005 15:07
von Gast210225
Hallo,
danke. Nur kann ich die Schriftgröße noch ändern?

Verfasst: 26.04.2005 15:46
von ScorpionKing
sag mal, kannst du html??

Code: Alles auswählen

<font size=18>Hallo</font>
für weitere ungeklärte fragen:

Code: Alles auswählen

<font color=red size=18 face=Verdana>Hallo</font>
MfG, ScorpionKing!

Verfasst: 26.04.2005 16:22
von Gast210225
Ja, schon aber es soll die "Standart" Größe nehmen. Also wie die, die im ACP eingestellt is.

Verfasst: 26.04.2005 16:25
von fanrpg

Code: Alles auswählen

<span class="gensmall">Hallo</span>
:wink: