Hi digitalencore, thanks for your comments. Both the text and the background are images. The text (weblog) is in my php file, wrapped in an h2. The background image (the black bar) is defined in my stylesheet for h2. See below:
PHP Code
<h2><img src="<?php bloginfo('stylesheet_directory')?>/images/weblog.gif" width="45" height="10" alt="Weblog" /></h2>
CSS Code
h2 {
color:#fff;
font-family:Arial, san-serif;
font-size:14px;
line-height:100%;
margin:0;
}
#left h2 {
background:url("/wp-content/themes/dd/images/header450.gif");
height:24px;
margin:0 0 14px;
width:450px;
}
You may be able to include all the h2 in one definition, but I have two different sizes for the background at work and had to define those per the div they're in. Hope that helps.