Ah, sorry, I thought maybe there was some astonishingly simple way of doing this of which I was unaware.

What I have is this in the index template:
QUOTE
<div id="banner">
<div id="banner-inner" class="pkg">
<h2 id="banner-description"><$MTBlogDescription$></h2>
</div>
</div>
And this in the stylesheet:
QUOTE
#banner {
background-image: url(../images/banner.jpg);
background-repeat: no-repeat;
position: relative;
width: 100%;
height: 80px;
}
#banner-inner {
position: static;
border-width: 0;
}
#banner-header {
display: none;
}
#banner-description {
font-family: "Times New Roman", Times, serif;
font-size: medium;
font-weight: bold;
background: none;
margin: 0;
padding: 0;
}
I'd just like to get the description to sit at the bottom of the banner. I could add padding to the top, but that feels like fixing the problem with duct tape. I'm sure it wouldn't work properly on every browser.