Hi Tina -
Thanks so much for your quick reply.
I did read over that post a few times, and I want to just paste the code into my
tpl_box_default_left.php
tpl_box_default_right.php
tpl_box_default_single.php
But...my curiousity is getting the best of me.
Exactly how is this code modifying the page to look for a new bottom div/class?
<div class="leftBoxContainer" id="<?php echo str_replace('_', '-', $box_id ); ?>" style="width: <?php echo $column_width; ?>">
<div id="crsnavwrap">
<table width="162" cellpadding="0" cellspacing="0">
<tr>
<td valign="bottom" id="<?php echo str_replace('_', '-', $box_id) . 'Heading'; ?>"><?php echo $title; ?></h3></td>
</tr>
<tr><td valign="top">
<?php echo $content; ?>
</td>
</tr>
<tr><td valign="top" id="<?php echo str_replace('_', '-', $box_id) . 'Bottom'; ?>"><img src="../images/pixel_trans.gif" /></td>
</tr></table>
</div>
</div>
I ask so that I will learn the php and be able to fix future problems. Therefore, next time I won't have to post here. : D
Thanks again. Your posts are invaluably awesome.