I want to display our logo and a livesearch in the header in the theme builder layout. Currently I have this:
"menulink:home|icon=noicon}builder-logo}menulink}livesearch}" (I removed the { to prevent the macro from being processed)
This cause the livesearch to be below the logo. I've tried using the align right but it doesn't have an effect. My goal is to get the live search on the right side of the header and the logo on the left.
Is this possible? I've searched and tried multiple options to no avail.
.png)








Comments (1)
Oct 23, 2009
Kate Kneafsey says:
I had similar problems on my header. I ended up using the Unknown macro: {html}...I had similar problems on my header. I ended up using the
macro in the Contents like this:
{html}
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" align="left" valign="top">
<tr>
<td rowspan="2" align="left" valign="middle">
{html}
{menulink:home|icon=noicon}{builder-logo}{menulink}
{html}
</td>
<td width="*" rowspan="2">
{html}
{builder-spacetitle}
{html}
Space
</td>
<td align="right" width=30%>
</td>
</tr>
<tr>
<td width="*"> </td>
<td> </td>
</tr>
</table>
{html}
Note that we have a menu bar in the upper right corner which I clipped out of this code. So it may not be exactly right but it did work for us. This keeps the logo and the title parallel to rather than below each other. You could add your Livesearch in one of theother blank cells.
Kate