6
Hopefully this might help
go into your theme.html
find
le="color: #000000"><?php <table cellspacing="0"><tr> <td width="whatever" background="whatever"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="/theme_blockleft.html"}> <{/foreach}> <!-- End left blocks loop -->
add a class instead of background color
le="color: #000000"><?php <table cellspacing="0"><tr> <td width="whatever" class="b1"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="/theme_blockleft.html"}> <{/foreach}>
then add the class to the style.css file
le="color: #000000"><?php .b1 { background-image:url('images/b1.jpg');
should work

well it seems to in " phpkaox" theme on my test sever