Dear All,

I'm using Drupal 4.3.1, Polder theme and style.module. Currently, I do not use static CSS, but I keep using the default polder theme with activating logo image AND title text. My header is generated like this :

<!-- MAIN HEADER -->
<table border="0" cellpadding="8" cellspacing="0" width="100%">
<tr><td align="center">
<div class="Header">This is my title
</div>
<img src="/themes/polder/images/logo.png" alt="Logo" vspace="5" />
<div class="Description">This is my slogan</div>
</td></tr>
</table>
<br />

I would like tit to be :
<!-- MAIN HEADER -->
<table border="0" cellpadding="8" cellspacing="0" width="100%">
<tr><td>
<img src="/themes/polder/images/logo.png" alt="Logo" vspace="5" /></td>
<td align="center">
<div class="Header">This is my title
</div>
</td><td>
<div class="Description">This is my slogan</div>
</td></tr>
</table>
<br />

I try to look at common.inc, themes.inc, drupal.css, polder.theme, polder.inc, default.css and I was unable to find where I could enforce the <td>$content</td> sequence

Is there something I'm missing between css, inc, theme and so on ?

Best Regards