Saints_Knight
- in index.template.php look for:
<td width="70%" valign="bottom" align="left">';
// Show the menu here, according to the menu sub template.
template_menu();
echo '
</td>
</tr>
</table>';
replace with:
<td width="100%" valign="bottom" align="left">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="15%"></td>
<td width="70%">';
// Show the menu here, according to the menu sub template.
template_menu();
echo '
</td>
<td width="15%"></td>
</tr>
</table>
</td>
</tr>
</table>';
- in style.css look for:
#search form
{
padding: 12px 20px 0 0;
margin: 0;
text-align: left;
white-space: nowrap;
}
replace with:
#search form
{
padding: 12px 20px 0 0;
margin: 0;
text-align: right;
white-space: nowrap;
}
[darksteel]
Yes, am afraid changes have to be made to make it work with 1.1 .. am planning on upgrading all my themes when 1.1 gets gold.