2013-08-12, 07:15 PM
I see what the problem is. In the header, replace the following:
With
Be sure to revert template to original before doing this. Basically remove what you did before.
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
With
<table class="bodyline" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td> <table class="topbkg" style="background: url(http://www.yoursite.com/images/background-of-your-header.jpg) repeat-x" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="index.php?sid=cf38afdee591dc613d90f27128efd9a6"><img src="http://localhost/images/logo.gif" border="0" alt="yoursite.com" title="yoursite.com" width="290" height="110" /></a></td>
<td align="center" width="100%">
<span class="header_maintitle">
<b><font face="arial">First text in line.</font></b><br />
<span class="header_genmed">Other text in line or some link!</span><br />
</span>
</td>
<td align="right"><img src="http://localhost/images/logo.gif" border="0" alt="yoursite.com" title="yoursite.com width="" height="" /></td>
</tr>
</table>
Be sure to revert template to original before doing this. Basically remove what you did before.