möchte block erweitern wer kann helfen

Begonnen von goodssale, 22 Dezember 2006, 16:58:58

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

goodssale

hallo ich bräuchte hilfe,
ich habe mir im forum einen block rundergeladen.
block-2_nebeneinander.php und habe ihn auf 3 blöcke erweitert jetzt kommt mein problem.





so sieht das ganze nicht gut aus, ich möchte das der block wer ist online links steht und der block uhr in der mitte ist und der block wochenende links steht.

hier mal der code vom block

if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");

$mxblockcache = false;

include("block-Weekend_Counter.php");
$out1 = $content;
unset($content);
include("block-Clock.php");
$out2 = $content;
unset($content);

include("block-Who-is-Where.php");
$out3 = $content;

$content = "<table><tr>
<td>".$out1."</td>
<td>".$out2."</td>
<td>".$out3."</td>
</tr></table>";

$blockfiletitele = "block-Top10_Downloads.php";

?>

kann mir einer sagen was ich ändern muß, habe im forum nichts gefunden.
danke schon mal für euere hilfe
grüße heinz
Grüße Heinz

cihan

hi, versuch mal so:



if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");

$mxblockcache = false;

include("block-Weekend_Counter.php");
$out1 = $content;
unset($content);
include("block-Clock.php");
$out2 = $content;
unset($content);

include("block-Who-is-Where.php");
$out3 = $content;

$content = "<table><tr>
<td>".$out3."</td>
<td>".$out2."</td>
<td>".$out1."</td>
</tr></table>";

$blockfiletitele = "block-Top10_Downloads.php";

?>

goodssale

hallo zusammen,
danke für die hilfe. ich habe mich falsch ausgedrückt, mein fehler.
was ich möchte ist das die blöcke nicht so zusammengpresst sind, das heist ich möchte das der block
wochenende links ist.
der uhr block sollte center sein
der wer ist online sollte rechts stehen.

so sieht es im moment aus



so möchte ich das es aussieht


grüße heinz
Grüße Heinz

bajazzo

Genie ist die grenzenlose Bereitschaft, sich Mühe zu geben.

goodssale

Grüße Heinz

goodssale

hallo,
danke es geht super.
schöne weihnachten allen.
grüße heinz
Grüße Heinz

tuningcar

Zitatdanke es geht super.

Könntest du mir deinen Code zeigen ??

Ich bekomm es einfach nicht hin  :mad2:

goodssale

sorry habe deine frage nicht früher gesehen.
hier ist der code

<?php
/**
* pragmaMx  Content Management System
* Copyright (c) 2005 pragmaMx Dev Team - http://pragmamx.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/

if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");

$mxblockcache = false;
include("block-Letter.php");
$out1 = $content;
unset($content);
include("block-Birthday.php");
$out2 = $content;
unset($content);
include("block-Zitat.php");
$out3 = $content;

$content = "<table width=\"100%\"><tr>
<td>".$out1."</td>
<td>".$out2."</td>
<td>".$out3."</td>
</tr></table>";

$blockfiletitele = "block-Top10_Downloads.php";

?>

grüße heinz
Grüße Heinz