Eccomi di nuovo qua a chiedere consiglio dopo averle provate un po e senza trovare un tutorial comprensibile ed adatto alle mie esigenze in rete...
Allora ...
Io ora ho questa immagine di background
"Guidata" dal css
body {
background: #111111 url(/templates/mg_themes/images/p_blue/bg21-03-09.gif);
margin: 0;
padding: 0;
background-position: top;
background-repeat: no-repeat;
background-attachment:fixed;
}
background: #111111 url(/templates/mg_themes/images/p_blue/bg21-03-09.gif);
margin: 0;
padding: 0;
background-position: top;
background-repeat: no-repeat;
background-attachment:fixed;
}
Da consiglio ricevuto sarebbe meglio tenere un'immagine di fondo che si adatti a tutte le risoluzioni e mettere dei blocchi fissi agli angoli ... in modo che si adatti a qualsiasi risoluzione!
Usare questo sfondo
Cambiando il CSS body in:
body {
background: #111111 url(/templates/mg_themes/images/p_blue/bg.gif);
margin: 0;
padding: 0;
background-position: top;
background-repeat: repeat;
background-attachment:fixed;
}
background: #111111 url(/templates/mg_themes/images/p_blue/bg.gif);
margin: 0;
padding: 0;
background-position: top;
background-repeat: repeat;
background-attachment:fixed;
}
E fixando negli angoli, in quello superiore sinistro ed inferiore destro, queste immagini
TOP LEFT
background: url(/templates/mg_themes/images/p_blue/corner_topleft.gif)
BOTTOM RIGHT
background: url(/templates/mg_themes/images/p_blue/corner_bottomright.gif)
Queste 2 immagini come le inserisco nel CSS?
Devo modificare anche i TPL? overall_footer ed overall_header?
Grazie dell'aiuto!














































