Newbie here,
I have created a 3 colums
CSS based template, both columns collapse if there is no content. Now, there is IE issue with the image that I am trying to place at the bottom of the column.
Here is that portion of the index file:
<?
php if (mosCountModules('left') > 0) {?><div class="left"><?
php mosLoadModules('left', -3);?></div><?
php } ?>
<?
php if (mosCountModules('right') > 0) {?><div class="right"><?
php mosLoadModules('right', -3);?><div class="right_footer"></div></div><?
php } ?>
The right_footer class is what is causing the problem in IE, in FF I have a nice rounded cornered image to the footer of the column, in IE, the image that I am using for the background (right class), seems to extend beyond the footer image I have created.
Here is the
CSS from the template, you will notice that I have used the IE hack to position the images better in IE but I can't get the above problem solved:
.right
{
float:right;
padding: 5px 0 0 20px;
background: url(../images/rightbg.
gif) repeat-y;
width: 200px;
}
html>body .right
{
/*margin-top: -56px;*/
float:right;
padding: 5px 0 0 20px;
background: url(../images/rightbg.
gif) repeat-y;
width: 200px;
}
.right_footer {
float: right;
margin-left: -30px;
width: 220px;
height: 14px;
background: url(../images/rightbg_footer.
gif) no-repeat;
}
html>body .right_footer {
float: right;
width: 220px;
height: 14px;
background: url(../images/rightbg_footer.
gif) no-repeat;
}
Thanks for any help.