Betreff: Re: Haupt- und Usermenü Überschriften durch Bilder ersetzen! von mcleines am 03.07.2006 14:32:52
Der Inhalt der Datei WDC_002/blocks/theme_blockleft.html sollte ungefähr so aussehen:
<table id=tablebox width=160 cellspacing=0>
<tr>
<{if $block.title == 'Hauptmenü'}>
<td id=headerbox width=68% valign=middle><img src="<{$xoops_imageurl}>img/imagehauptmenue.gif" align=left></td>
<{elseif $block.title == 'Usermenü'}>
<td id=headerbox width=68% valign=middle><img src="<{$xoops_imageurl}>img/imageusermenue.gif" align=left></td>
<{else}>
<td id=headerbox width=68% valign=middle> <{$block.title}></td>
<{/if}>
<td height=20 width=2%>
<img src="<{$xoops_imageurl}>img/hbarright.gif" align=left>
<td width=30%> </td>
</tr>
<tr>
<td colspan=3 id=box>
<div class="blockContent"><{$block.content}></div>
</td>
</tr>
</table>
Die Bildchen kommen dann als WDC_002/img/imagehauptmenue.gif und WDC_002/img/imageusermenue.gif hinein.
|