seguendo una guida del sito per joomla 1.5 ho iniziato a fare un template ma non so come proseguire... vi posto i 3 file:
html:
<html>
<head>
</head>
<body bgcolor="000000">
<style type="text/css" >@import url(stile.css);</style>
<div class="container">
<div class="header" >
<jdoc:include type="modules" name="header" />
</div>
<div class="left">
<jdoc:include type="modules" name="left" />
</div>
<div class="main-contenent">
<jdoc:include type="component" />
</div>
<div class="footer">
<jdoc:include type="modules" name="footer" />
</div>
</div>
</body>
</html>
css:
.container{
width: 800px;
margin: 0 auto;
}
.header {
text-align: center;
background-image: url(olio.jpg);
border: 1px solid #CCCCCC;
width: 100%;
height: 300px;
float:none;
}
.left {
text-align: center;
background-color:#6666CC;
width: 25%;
height: 600px;
float:left;
}
.main-contenent {
text-align: center;
background-color:#FFCC99;
width: 75%;
height: 600px;
float:left;
}
.footer {
text-align: center;
background-color:#33FF33;
border: 1px solid #CCCCCC;
height: 50px;
clear:left;
}
xml:
<?xml version="1.0" encoding="utf-8"?>
<install type="template" version="1.6">
<name>olio</name>
<creationDate>2011-06-09</creationDate>
<version>1.0</version>
<author>daniele dolci</author>
<authorUrl></authorUrl>
<description></description>
<files>
<filename>coop.html</filename>
<filename>stile.css</filename>
<filename>templateDetails.xml</filename>
</files>
<images>
</images>
<css>
<filename>stile.css</filename>
</css>
<positions>
<position>header</position>
<position>left</position>
<position>footer</position>
</positions>
</install>
da qui in poi non so come procedere, che cambiare etc... per fare un template professionale etc non va fatot prima con un software di grafica e poi salvo in formato per il web già diviso?