Inserire una immagine come sfondo nell'header di un SU_ theme di Genesis

1 contenuto / 0 new
Inserire una immagine come sfondo nell'header di un SU_ theme di Genesis

Vorrei inserire una immagine come sfondo/testata nell'header di un PASW-Subtheme di genesis ma non so come inserirla e con quale codice .
Riporto le sezioni di page.css e page.tpl.php

/**********************************************************
* Header Elements
**********************************************************/
/* #header wraps #branding and #header-blocks. */
#header {

margin: 0 0 0 0;
padding: 0;
height: 145px;
background-repeat: repeat;
border-bottom-width: medium;
border-bottom-style: ridge;
border-bottom-color: #000040;
background-image: url('/files/images/banner.jpg');
background-repeat: repeat-x;
}

<?php
 
if ($site_logo || $site_name):
?>

<?php
 
if ($site_logo or $site_name):
?>

<?php
 
if ($title):
?>


<?php
 
if ($site_logo):
?>
<?php
 
print $site_logo;
?>
<?php
 
endif;
?>

<?php
 
if ($site_name):
?>
<?php
 
print $site_name;
?>
<?php
 
endif;
?>


<?php
 
else: /* Use h1 when the content title is empty */
?>

<?php
 
if ($site_logo):
?>
<?php
 
print $site_logo;
?>
<?php
 
endif;
?>

<?php
 
if ($site_name):
?>
<?php
 
print $site_name;
?>
<?php
 
endif;
?>

<?php
 
endif;
?>

<?php
 
endif;
?>

<?php
 
if ($site_slogan):
?>

<?php
 
print $site_slogan;
?>

<?php
 
endif;
?>

<?php
 
endif;
?>

<?php
 
if ($page['header']):
?>

<?php
 
print render($page['header']);
?>

<?php
 
endif;
?>

<?php
 
if ($main_menu_links):
?>

<?php
 
print $main_menu_links;
?>

<?php
 
endif;
?>

<?php
 
endif; // end hide in overlay
?>

Grazie