https://www.icyphoenix.com/viewtopic.php?f=36&t=4019
-----------------------------------
xox
Mon 07 Apr, 2008 00:59

What Files?
-----------------------------------
I am editing a template file and wanted to know that I have to edit for pictures of the menus, and every tbl_h_c.gif to resize.

And also that I have to change so that the news does not have the same images that the pictures of the menus, edit the CSS and that, but not files that are: S

Thank you and I hope to see me well explained

sorry for my english, google translation rolf ^^


-----------------------------------
Mighty Gorgon
Mon 07 Apr, 2008 01:04

Re: What Files?
-----------------------------------
[quote user="xox" post="27387"]I am editing a template file and wanted to know that I have to edit for pictures of the menus, and every tbl_h_c.gif to resize.

And also that I have to change so that the news does not have the same images that the pictures of the menus, edit the CSS and that, but not files that are: S

Thank you and I hope to see me well explained

sorry for my english, google translation rolf ^^[/quote]
If I understand well... you should try to look into [b]mg_themes.cfg[/b] (or your_template_folder.cfg).


-----------------------------------
xox
Mon 07 Apr, 2008 17:38

Re: What Files?
-----------------------------------
I can not find the lines resize the size of the images within the circle

[URL=http://imageshack.us][IMG]http://img90.imageshack.us/img90/912/dibujory9.gif[/IMG]

thx again


-----------------------------------
Mighty Gorgon
Thu 10 Apr, 2008 01:06

Re: What Files?
-----------------------------------
You need to edit both CSS and CFG files.

[codeblock]	if(in_array($color, $squared_colors))
	{
		/*
		$img_fade = '';
		$img_fade_nm = '';
		*/
		$images['tbl_h_l'] = '<table class="roundedtop" width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td width="27" align="right" valign="bottom"><img class="topcorners" src="' . $current_template_images . 'tbl_h_l.gif" width="27" height="29" alt="" /></td>';
		$images['tbl_h_c'] = '<td class="roundedhc" width="100%" align="center">';
		$images['tbl_h_r'] = '</td><td width="27" align="left" valign="bottom"><img class="topcorners" src="' . $current_template_images . 'tbl_h_r.gif" width="27" height="29" alt="" /></td></tr></table>';
		$images['tbl_b_l'] = '';
		$images['tbl_b_c'] = '';
		$images['tbl_b_r'] = '';
		$images['tbl_f_l'] = '<table class="roundedbottom" width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td width="10" align="right" valign="top"><img src="' . $current_template_images . 'tbl_f_l.gif" width="10" height="12" alt="" /></td>';
		$images['tbl_f_c'] = '<td class="roundedfc" width="100%" align="center">';
		$images['tbl_f_r'] = '</td><td width="10" align="left" valign="top"><img src="' . $current_template_images . 'tbl_f_r.gif" width="10" height="12" alt="" /></td></tr></table>';

		$images['tbl_h_l_house'] = $images['tbl_h_l'];
		$images['tbl_h_l_alt'] = $images['tbl_h_l'];
		$images['tbl_h_r_alt'] = $images['tbl_h_r'];
		$images['tbl_h_l_small_b'] = $images['tbl_h_l'];
		$images['tbl_h_r_small_b'] = $images['tbl_h_r'];
		$images['tbl_h_l_small_y'] = $images['tbl_h_l'];
		$images['tbl_h_r_small_y'] = $images['tbl_h_r'];
	}
[/codeblock]


-----------------------------------
xox
Wed 16 Apr, 2008 13:06

Re: What Files?
-----------------------------------
thx again!!


-----------------------------------
Lopalong
Wed 16 Apr, 2008 23:17

Re: What Files?
-----------------------------------
xox,

In case you missed it, you have to remove these height and width from the .css too. ;)

[code linenumbers=false].roundedtop td {
	height: 29px;
	white-space: nowrap;
	/*
	background: none;
	*/
}

.topcorners {
	vertical-align: bottom;
	width: 27px;
	height: 29px;
}[/code]


