Ciao a tutti,
vorrei mettere la header in .png del mio sito in .swf. Il file lo ho, ma come faccio ad inserirlo?
Questo è inserito nel file index.php
<div class="art-Header">
<div class="art-Header-png"></div>
<div class="art-Header-jpeg"></div>
<div class="art-Logo">
Questo è il template.css
div.art-Header
{
margin: 0 auto;
position: relative;
z-index:0;
width: 1259px;
height: 250px;
}
div.art-Header-png
{
position: absolute;
z-index:-2;
top: 0;
left: 0;
width: 1259px;
height: 250px;
background-image: url('../images/Header.png');
background-repeat: no-repeat;
background-position: left top;
}
div.art-Header-jpeg
{
position: absolute;
z-index:-1;
top: 0;
left: 0;
width: 1259px;
height: 250px;
background-image: url('../images/Header.jpg');
background-repeat: no-repeat;
background-position: center center;
}
Please, Carneade!