RE: About small image size...
BirdBrain <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.devel |
|---|---|
| Message-ID | <e07433e5c5da517120c824a61e3075b8@osCommerce-Forums> |
This message was sent from: Development
http://forums.oscommerce.com/viewtopic.php?p=157836#157836
----------------------------------------------------------------
Hi-Lab,
I am sorry if I misunderstood your question. I hpe this is what you are asking for. The image sizes are used by the "image wrapper" the function they are used in is in the admin/includes/functions/html_output.php
[code]////
// The HTML image wrapper function
function tep_image($src, $alt = '', $width = '', $height = '', $params = '') {
$image = '<img src="' . $src . '" border="0" alt="' . $alt . '"';
if ($alt) {
$image .= ' title=" ' . $alt . ' "';
}
if ($width) {
$image .= ' width="' . $width . '"';
}
if ($height) {
$image .= ' height="' . $height . '"';
}
if ($params) {
$image .= ' ' . $params;
}
$image .= '>';
return $image;
}
[/code]