Zitat Zitat von Term Beitrag anzeigen
Ich habe das jetzt schon probiert. kommer aber nie auf das gewünschte Ergebniss.
Ich habe das VMS 1.2. Könnte jemand bitte den Inhalt der layout.lib mir schreiben so dass er das Hintergrundbild anzeigt.
öhm...möchtest du ein hintergrundbild in der navigationsbar oben oder auf deiner seite im hintergrund?
sonst sieht bei mir die function head und meneuhead so aus:
PHP-Code:
function head($titel){
echo 
'
<table style="border:solid 1px lightgrey" width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#4B69FF">
<tr>
<td valign="middle" align="center" height="18" background="images/Lines.gif"><b><font color="#ffffff">'
.$titel.'</font></b></td>
</tr>
<tr>
<td bgcolor="#FEFBF5" valign="top" align="left">
<table width="98%" cellpadding="2" cellspacing="2">
<tr>
<td>
'
;
}

function 
menuehead($titel){
echo
'
<table style="border:solid 1px lightgrey" width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#4B69FF">
<tr>
<td valign="middle" align="center" height="18" background="images/Lines.gif"><b><font color="#ffffff">'
.$titel.'</font></b></td>
</tr>
<tr>
<td bgcolor="#FEFBF5" valign="top" align="left">
<table width="98%" cellpadding="2" cellspacing="2">
<tr>
<td>
'
;

wenn du aber den hintergrund deiner seite ändern willst mit irgendeinem bild oder so dann musst du die main.css datei öffnen (liegt im css ordner) und
irgendwo wo du willst folgendes einfügen:
Code:
body {

background-image:url(../images/background.gif);
}
und dem entsprechnend ein bild namens background.gif im ordner images haben

mfg mad