hello,
j'essaye de mettre 3 blocks de même dimension en centre bas mais sans succès, voici ce que j'ai trouvé mais ça marche pas:
<?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("blocks/block-Newest_Links.php");
$out1 = $content;
unset($content);
include("blocks/block-Last_5_Articles.php");
$out2 = $content;
unset($content);
include("blocks/block-Search.php");
$out3 = $content;
$content = "<table><tr>
<td>".$out1."</td>
<td>".$out2."</td>
<td>".$out3."</td>
</tr></table>";
$blockfiletitele = "Der Titel für den Block";
?>
où est le problème?
merci de l'aide