usually when displaying images via css you will have a z index like this
PHP Code:
#logoAd {
position: absolute; // reposition logo from the natural layout
left: 70px;
right: 5px;
top: 81px;
width: 300px;
height: 275px;
z-index: 2;
}
and it's usually that z index that causes the issue, make it a larger number to be on top and lower to be in front. It could of course be a float or clear issue, do you haqve a link so i can check the source code?