Link? Sorry, link of my site? I'm only on localhost so I can't give you the link. Maybe I don't get it...
Here is a copy of what I see when i preview:
Accueil.png
I don't know if it's help but this is the line php whose seems trouble:
// template layout
$templateWidth = $this->params->get("templateWidth");
if ($showleft || $showleft1 ||$showleft2 || $showleft3) {
$columnLeftWidth = $this->params->get("columnLeftWidth");
$columnLeftPad = 22;
}else{
$columnLeftWidth = 0;
$columnLeftPad = 0;
}
if ($showright || $showright1 ||$showright2 || $showright3) {
$columnRightWidth = $this->params->get("columnRightWidth");
$columnRightPad = 22;
}else{
$columnRightWidth = 0;
$columnRightPad = 0;
}
$contentWidth = $templateWidth - $columnLeftWidth - $columnLeftPad - $columnRightWidth - $columnRightPad;
$overallWidth = $templateWidth;