2
marcdg:
Open your file theme.html. There's you'll find, just after the body tag, a table that holds the logo and has a place for a banner. The table reads:
Quote:
<table width="700" cellspacing="0">
<!--DWLayoutTable-->
<tr id="header">
<td width="702" height="62" valign="top"><a href=<{$xoops_url}> /><img src="<{$xoops_imageurl}>logo.gif" width="700" height="56" alt="" /></a></td>
</tr>
<tr id="header">
<td height="45"> </td>
</tr>
</table>
There are several problems with this table, beginning with a fixed width and with the fact that it has two rows with the same id.
Change this code to:
Quote:
<table width="100%" cellspacing="0">
<!--DWLayoutTable-->
<tr id="header">
<td width="100%" height="62" valign="top"><div style="text-align: center;"><a href=<{$xoops_url}> /><img src"<{$xoops_imageurl}>logo.gif" width="700" height="56" alt="" /></a></div></td>
</tr>
</table>
This might do the trick.
Cheers