Revision 111, 0.7 KB
(checked in by knifee, 14 years ago)
|
added an align left to the box to fix IE aligning menus to the right :/
|
Line | |
---|
1 | <!-- box.tpl --> |
---|
2 | <table class=kb-table width=150 cellspacing="1"> |
---|
3 | <tr> |
---|
4 | <td class=kb-table-header align=center>{$title}</td> |
---|
5 | </tr> |
---|
6 | <tr class=kb-table-row-even> |
---|
7 | <td align="left"><div class=menu-wrapper> {foreach from=$items key=key item=i} |
---|
8 | {strip} |
---|
9 | {if $i.type == "caption" } |
---|
10 | <div class=menu-caption>{$i.name}</div> |
---|
11 | {elseif $i.type == "link" } |
---|
12 | <div class=menu-item>{if isset($icon)}<img src="{$icon}" border="0">{/if} <a href="{$i.url}">{$i.name}</a><br> |
---|
13 | </div> |
---|
14 | {elseif $i.type == "img" } <img src="{$i.name}" border="0"> {elseif $i.type == "points" } |
---|
15 | <div class=kill-points>{$i.name}</div> |
---|
16 | {/if} |
---|
17 | {/strip} |
---|
18 | {/foreach} </div></td> |
---|
19 | </tr> |
---|
20 | </table> |
---|
21 | <br> |
---|
22 | <!-- /box.tpl --> |
---|