Add through HTML/CSS Inserts -> CSS Insert:
HTML Code:
td.logoarea-logo {
width: 100%; /* to make this cell get all available width */
}
td.feed-icons,
td.search-box {
width: 280px; /* to limit these cells to the width of the right sidebar*/
}
h1.blogtitle, p.tagline {
text-align: center;
}
td#logoarea-left {
width: 280px;
}
In functions/bfa_header_config.php, after
PHP Code:
$logo_area = '<table id="logoarea" cellpadding="0" cellspacing="0" border="0" width="100%"><tr>';
add
PHP Code:
$logo_area .= '<td rowspan="2" id="logoarea-left" valign="middle">
<img src="/path/to/image.gif" alt="text..." /></td>';
With this, your tagline will wrap early because 280 pixels are reserved on both the left and right side. To avoid this you'd have to let the RSS buttons on the right wrap:
Change the two instances of 280px above to 200px and add this to the CSS Insert
HTML Code:
div.rss-box {
width: 200px;
}