When I put a picture in the ad space it's recreating the body_background image. The problem is I don't want to have to create another picture for it. I have tried to edit the ad_header css and add transparent background settings, but the only thing it will let me do is change the color transparent just shows me the background. So I have no idea how it's getting the background. Does anyone know a way around this? The reason I'm using this for a logo area is because the logo area was too small and I don't plan on having adds anyway.
Here is a picture of what I'm talking about.

Here is the CSS in the ad_header page. I have tried several different combinations and the only thing I can't get it to do is to not bring that background image forward from the body_background.
<div class="ad_header_inner"><vb:if condition="$now = mktime()"></vb:if><vb:if condition="$end = mktime(23,59)"></vb:if><vb:if condition="$start = mktime(00,00)"></vb:if><vb:if condition="$now >= $start AND $now <= $end"><div id="logo">
<img src="images/shield_header_logo.png" />
</div>
<style>
#logo
{
width: 100%;
height: 100%;
background: transparent;
}
#logo img {
width: 900px;
height: 150px;
bottom: 0px;
left: 152px;
background: transparent;
}
</style><vb:if condition="$adsshown[] = 2"></vb:if></vb:if></div>
Here is a picture of what I'm talking about.
Here is the CSS in the ad_header page. I have tried several different combinations and the only thing I can't get it to do is to not bring that background image forward from the body_background.
<div class="ad_header_inner"><vb:if condition="$now = mktime()"></vb:if><vb:if condition="$end = mktime(23,59)"></vb:if><vb:if condition="$start = mktime(00,00)"></vb:if><vb:if condition="$now >= $start AND $now <= $end"><div id="logo">
<img src="images/shield_header_logo.png" />
</div>
<style>
#logo
{
width: 100%;
height: 100%;
background: transparent;
}
#logo img {
width: 900px;
height: 150px;
bottom: 0px;
left: 152px;
background: transparent;
}
</style><vb:if condition="$adsshown[] = 2"></vb:if></vb:if></div>
Comment