Probably need to add some CSS code to be able to place the banner on the header.
For example if you were putting a text line in the header you might use something like :
Two different ways to place text on that skin header:
.mytext {
position: absolute; top: 46px; right: 140px;
height: 37px;
padding-right: 25px;
color: #FF0000;
font-size: 16px;
font-weight: bold;
}
.mytext {
position: relative;
top: -70px; left: 330px;
color: #0000FF;
font-size: 16px;
font-weight: bold;
}
In the header template:
Add:
<div class="mytext"> This is the text I want to display in the header!</div>
You should be able to easily adapt something like this for your banner display.
HTH,
mikesz
|