image sizes are located in template name.cfg.
you will notice the code at the top of the page
- Code: Select all
$current_template_images = $current_template_path . "/images";$topic_iw = '59';$topic_ih = '18';$post_iw = '91';$post_ih = '24';$icon_iw = '16';$icon_ih = '18';$topic_icon_iw = '20';$topic_icon_ih = '20';$folder_iw = '22';$folder_ih = '22';$folderbig_iw = '25';$folderbig_ih = '25';$catfolderbig_iw = '32';$catfolderbig_ih = '32';
this code will differ from template to template
you can find which of these is controling the size of folder_new.gif by doing a search for it. In Integra2, you will find
- Code: Select all
$images['forum_new'] = "$current_template_images/folder_new.gif" width="$folderbig_iw" height="$folderbig_ih" class="imgfolder";
this means you will edit the size of
- Code: Select all
$folderbig_iw = '25';$folderbig_ih = '25';
be aware that this will change the size of all the images controled by this tag. If you need to change just one image
you can create a new tag for it like this (see the bottom)
- Code: Select all
$current_template_images = $current_template_path . "/images";$topic_iw = '59';$topic_ih = '18';$post_iw = '91';$post_ih = '24';$icon_iw = '16';$icon_ih = '18';$topic_icon_iw = '20';$topic_icon_ih = '20';$folder_iw = '22';$folder_ih = '22';$folderbig_iw = '25';$folderbig_ih = '25';$catfolderbig_iw = '32';$catfolderbig_ih = '32';$newtag_iw = '100';$newtag_ih = '25';
then for your button, use
- Code: Select all
$images['forum_new'] = "$current_template_images/folder_new.gif" width="$newtag_iw" height="$newtag_ih" class="imgfolder";
all the images in this file, must have this size tag, or Internet explorer, will display them as little red
x's
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie