http://www.icyphoenix.com/viewtopic.php?f=36&t=4164&p=28285#p28285
-----------------------------------
Lopalong
Tue 06 May, 2008 12:29

Re: [RELEASE] Theme White Metal
-----------------------------------
Hi Limun,

It's breaking up with banners and Lofi, as it needs to be added to xs.cfg too - Maybe better to release it as a Beta for now ? ;)

[b]Banners:[/b]

[img]http://www.icyphoenix.com/files/images/3531/banners.png[/img]

[b]LoFi:[/b]

 [img]http://www.icyphoenix.com/files/images/3531/lofi.png[/img]

[b]EDIT:[/b]
It's also not wise to use these strings / url's as each theme should use its own file names etc.

[code linenumbers=false]$colors = array(
	'win_p_black',

$tpl_colors_extension = array(
	'win_p_black' => '_win_p_black',

###########

${'w_metal'}[0]['template_name'] = "w_metal";
${'w_metal'}[0]['style_name'] = "White Metal";
${'w_metal'}[0]['head_stylesheet'] = "style_win_p_black.css";
${'w_metal'}[0]['body_background'] = "win_p_black";

###########

overall_footer_win_p_black.tpl
overall_header_win_p_black.tpl[/code]

There also appers to be a mis-match here with what you are trying to do ?

[code linenumbers=false]You're calling this in the .cfg for win_p_black footer:

<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="13px"><img src="templates/w_metal/images/win_p_black/bot_l.png" width="13" height="24" border="0" alt="" /></td>
<td class="bot-s" width="100%" height="24px"><img src="templates/w_metal/images/win_p_black/bot_m.gif" width="83" height="16" border="0" alt="" /></td>
<td width="13"><img src="templates/w_metal/images/win_p_black/bot_r.png" width="13" height="24" border="0" alt="" /></td>
</tr>
</table>


When it appears that you want to be calling this in the overall_footer_white_metal.tpl:

<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="13px"><img src="templates/w_metal/images/white_metal/bot_l.png" width="13" height="24" border="0" alt="" /></td>
<td class="bot-s" width="100%" height="24px"><img src="templates/w_metal/images/white_metal/bot_m.gif" width="141" height="16" border="0" alt="" /></td>
<td width="13"><img src="templates/w_metal/images/white_metal/bot_r.png" width="13" height="24" border="0" alt="" /></td>
</tr>
</table>[/code]


