Hi,
I think you haven´t understand the systematics.
1. I can´t find an image at
sbo-piramide.nl/temp/phpwcms/picture/header.gif
2. The images in your filecenter don´t be the images in /picture/......
Filecenter is an single image administrations fo the two CPs images, text with image and article.
The files and folders you did see there are virtual names, db generated.
3. For I static images using in a template I would prefere the path /pictures/.
Please copy the image
header.gif via ftp into the folder
sbo-piramide.nl/temp/phpwcms/picture/
4. Now you can use the RT {IMAGE:header.gif}
5. But the betterway is a call with :
<img src="img/leer.gif" width="yourImageWidth" height="yourImageHeight" border="0" vspace="0" hspace="0" alt="Piramide">
6. The final best construction is a call from an css instructions like this (frontend.css):
Code: Select all
/* Head logo */
.header0 {
background-image: url(../../picture/header.gif);
background-repeat: no-repeat;
background-color: #ffffff;
}
- Template:
Code: Select all
<td class="header0" height="yourImageHeight" valign="top">
<img src="img/leer.gif" width="20" height="yourImageHeight" border="0" vspace="0" hspace="0" alt="nop">
</td>
(With a blank gif "leer.gif" at /img/)
Regards Knut