Well, that's my point. The container divs are just not there at all.
So, we do not exactly know how the bottom corner was intended to be there. It seems like the structure for it is just not there which is a bit mystifying as it comes from a downloaded template. (or maybe not) Perhaps I am missing something....
What I would try is to create a container div to put it in. To go back to where we were:
Code:
<div id="centerHeaderBackground"></div>
<?php
/**
* prepares and displays center column
*
*/
require($body_code); ?>
I would either do what i said and try and use #centerHeaderBackground. The disadvantage of this is that I do not really know for sure that it is doing nothing special. So, instead let's add a new div.
Code:
<div id="centerHeaderBackground"></div>
<div id="newDiv">
<?php
/**
* prepares and displays center column
*
*/
require($body_code); ?>
</div>
The create a css rule that puts the correct image in the bottom left corner of this new div. Something like the rule that is hanging around loose in the css file:
Code:
{ background-image: URL(../images/MenuRightFooter.gif);
background-repeat: no-repeat;
}
So make it:
Code:
#newDiv{
background-image: URL(../images/MenuRightFooter.gif);
background-repeat: no-repeat;
background-position: bottom left;
}
You may have issues with padding, margins and borders so that may need to be tweaked.