Quote Originally Posted by adhd05

<div class="leftBoxFooter" id="<?php echo str_replace('_', '-', $box_id) . '-footer'; ?>"></div>

And put this in my css
.leftBoxFooter {

background-image : URL('../images/sidebox_bottom.gif');

background-repeat: no-repeat;

}

But as yet nothing has changed on the site, help??
Change the '-footer' to 'Footer'

the image isn't showing because your class id's aren't matching

The height - add the height you want to the stylesheet defines
example :
.leftBoxFooter {

height:25px;
background-image : URL('../images/sidebox_bottom.gif');

background-repeat: no-repeat;

}


Hope that helps!