Background d'un template

Bjr
Pourriez vous m’indiquer comment ajouter une image au
“background” d’un “template” tel que à chaque nouvelle utilisation du template,
l’image apparaise bien au fond ?
merci d’avance

Soit plus précis?

j’ai un fond blanc , mais je voudrais que chaque news (sur un script de news par exemple) soit vue ds un cadre ou un fond que j’aurai défini …

Donc c’est du html + css.

Bref, au choix:

Pour CSS:

.mon-fond {border: 1px solid black; background: black; color: white; background-image: foobar.gif; }

Pour HTML:

<div class="mon-fond">blah blah</div>

Réf. www.w3.org…

Certes mais çà me dit pas grand chose …j’ai créer un fond qui se nommme news.jpg, et voici le template par defaut (from cutenews)

<?PHP ///////////////////// TEMPLATE Default ///////////////////// $template_active = <<<HTML
{title}
{short-story}
[full-link]Lire la suite •[/full-link] [com-link]{comments-num} Commentaire(s)[/com-link]
Posté le {date} par {author}

Liste des commentateurs : [commenters-header]{commenters:2: - }[/commenters-header]
HTML; $template_full = <<<HTML
{title}
{full-story}
{comments-num} Commentaire(s)
Posté le {date} par {author}


HTML; $template_comment = <<<HTML
Commentateur :{author} - {mail}

{comment}

Posté par {author} le {date}


HTML; $template_form = <<<HTML Laissez un commentaire

Nom :
E-mail : (facultatif)
Smile : {smilies}
Code : {captcha}

Sauvegarder mes infos | Ne pas sauvegarder mes infos
HTML; $template_prev_next = <<<HTML

[prev-link]<>[/next-link]

HTML; $template_comments_prev_next = <<<HTML

[prev-link]<>[/next-link]

HTML; ?>

Ou dois je l’incorporer ? merci