PDA

View Full Version : Microthumbs on the Photopage square (NOT A BUG)


gillyworld
5th of October 2006 (Thu), 12:13
The Microthumbs on the Photopage all appear as square 45 pixels. This is not the size of my microthumbs and I'm not sure how these are generated. Pekka, I notice on your own site that this doesn't seem to happen. For an example look here http://www.gillyworld.com/ee15/photo.php?photo=6063&exhibition=121&ee_lang=eng&u=2176,3 Alan

Pekka
5th of October 2006 (Thu), 12:42
This happens because in basecode/SETUP_settings there are thumb display size limiters which are set to smaller size than your biggest thumb. Adjust those (or rethumbnail to smaller thumbs):

// thumb max size limiters

$s_comment_max_thumbsize_width = "130";
$s_comment_max_thumbsize_height = "130";

$s_news_max_thumbsize_width = "130";
$s_news_max_thumbsize_height = "130";

$s_sitemap_max_microthumbsize_width = "45";
$s_sitemap_max_microthumbsize_height = "45";

$s_camera_example_max_microthumbsize_width = "45";
$s_camera_example_max_microthumbsize_height = "45";

$s_lens_example_max_microthumbsize_width = "45";
$s_lens_example_max_microthumbsize_height = "45";

$s_accessory_example_max_microthumbsize_width = "45";
$s_accessory_example_max_microthumbsize_height = "45";

$s_infocard_outputstyle_max_thumbsize_width = "130";
$s_infocard_outputstyle_max_thumbsize_height = "";

$s_microthumbs_outputstyle_max_thumbsize_width = "45";
$s_microthumbs_outputstyle_max_thumbsize_height = "45";

$s_thumbs_outputstyle_max_thumbsize_width = "130";
$s_thumbs_outputstyle_max_thumbsize_height = "130";

$s_ratings_outputstyle_max_thumbsize_width = "130";
$s_ratings_outputstyle_max_thumbsize_height = "130";

$s_thumbs_and_titles_outputstyle_max_thumbsize_wid th = "130";
$s_thumbs_and_titles_outputstyle_max_thumbsize_hei ght = "130";

gillyworld
5th of October 2006 (Thu), 18:17
Pekka,

Thanks as always

Alan