In stylesheet.css I have add:
.banner_position {
text-align: center;
padding-bottom: 20px;
background: #d5fe74;
width: 960px !important;
}
in footer.php I have changed:
<div class="grid_24 alpha omega footer footer_background">
<p align="center"><?php echo FOOTER_TEXT_BODY; ?></p>
</div>
<?php
if ($banner = tep_banner_exists('dynamic', '468x50')) {
?>
<div class="grid_24" style="text-align: center; padding-bottom: 20px;">
<?php echo tep_display_banner('static', $banner); ?>
</div>
<?php
}
?>
<div class="grid_24 alpha omega footer footer_background">
<p align="center"><?php echo FOOTER_TEXT_BODY; ?></p>
</div>
<?php
if ($banner = tep_banner_exists('dynamic', '468x50')) {
?>
<div class="grid_24 alpha omega banner_position">
<?php echo tep_display_banner('static', $banner); ?>
</div>
<?php
}
?>
And now I have green background and no margins. However I have no idea what are this "alpha omega"...
Many Thanks









