Joomla.it Forum

Joomla! 1.5.x (versione con supporto terminato) => Joomla! 1.5 => I Template di Joomla 1.5.x => : plasmax 31 Mar 2011, 17:10:23

: Component.php
: plasmax 31 Mar 2011, 17:10:23
Ciao foro :)
Sto utilizzando Modalizer per aprire una shadowbox contenente aicontactsafe.

Il problema č che la shadowbox non usa il template del sito, ma resta tutto con font standard e fondo bianco.

Ho notato che il mio template non aveva il file component.php, cosė ho cercato di arrangiarne uno:

:
<?php
defined
('_JEXEC') or die;
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language?>" lang="<?php echo $this->language?>" >
<head>
 <jdoc:include type="head" />
 <link rel="stylesheet" href="<?php echo $this->baseurl?>/templates/boowne/css/tdefault.css" type="text/css" />
 <link rel="stylesheet" href="<?php echo $this->baseurl?>/templates/boowne/css/tdefault.css" type="text/css" />
 <link rel="stylesheet" href="<?php echo $this->baseurl '/templates/' $this->template?>/css/print.css" type="text/css" />
</head>
<body class="contentpane">
 <jdoc:include type="message" />
 <jdoc:include type="component" />
</body>
</html>



Ma senza risultati.


Dove sbaglio?